Skip to main content

instances_details

Creates, updates, deletes, gets or lists an instances_details resource.

Overview

Nameinstances_details
TypeResource
Idazure_extras.dyn365_fraud_protection.instances_details

Fields

The following fields are returned by SELECT queries:

OK. The operation was successful.

NameDatatypeDescription
idstringFully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
namestringThe name of the resource
locationstringLocation of the DFP resource.
propertiesobjectProperties of the provision operation request.
systemDataobjectMetadata pertaining to creation and last modification of the resource.
tagsobjectKey-value pairs of additional resource provisioning properties.
typestringThe type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectresourceGroupName, instanceName, subscriptionIdGets 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.

NameDatatypeDescription
instanceNamestringThe name of the instance. It must be a minimum of 3 characters, and a maximum of 63.
resourceGroupNamestringThe 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.
subscriptionIdstringA unique identifier for a Microsoft Azure subscription. The subscription ID forms part of the URI for every service call.

SELECT examples

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
;