instances_details
Creates, updates, deletes, gets or lists an instances_details resource.
Overview
| Name | instances_details |
| Type | Resource |
| Id | azure_extras.dyn365_fraud_protection.instances_details |
Fields
The following fields are returned by SELECT queries:
- get
OK. The operation was successful.
| Name | Datatype | Description |
|---|---|---|
id | string | Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName} |
name | string | The name of the resource |
location | string | Location of the DFP resource. |
properties | object | Properties of the provision operation request. |
systemData | object | Metadata pertaining to creation and last modification of the resource. |
tags | object | Key-value pairs of additional resource provisioning properties. |
type | string | The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts" |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get | select | resourceGroupName, instanceName, subscriptionId | Gets details about the specified instances. |
Parameters
Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
| Name | Datatype | Description |
|---|---|---|
instanceName | string | The name of the instance. It must be a minimum of 3 characters, and a maximum of 63. |
resourceGroupName | string | The name of the Azure Resource group of which a given DFP instance is part. This name must be at least 1 character in length, and no more than 90. |
subscriptionId | string | A unique identifier for a Microsoft Azure subscription. The subscription ID forms part of the URI for every service call. |
SELECT examples
- get
Gets details about the specified instances.
SELECT
id,
name,
location,
properties,
systemData,
tags,
type
FROM azure_extras.dyn365_fraud_protection.instances_details
WHERE resourceGroupName = '{{ resourceGroupName }}' -- required
AND instanceName = '{{ instanceName }}' -- required
AND subscriptionId = '{{ subscriptionId }}' -- required
;