account_detectors
Creates, updates, deletes, gets or lists a account_detectors
resource.
Overview
Name | account_detectors |
Type | Resource |
Id | azure.batch.account_detectors |
Fields
- vw_account_detectors
- account_detectors
Name | Datatype | Description |
---|---|---|
id | text | The ID of the resource. |
name | text | The name of the resource. |
accountName | text | field from the properties object |
detectorId | text | field from the properties object |
etag | text | The ETag of the resource, used for concurrency statements. |
resourceGroupName | text | field from the properties object |
subscriptionId | text | field from the properties object |
tags | text | The tags of the resource. |
type | text | The type of the resource. |
value | text | field from the properties object |
Name | Datatype | Description |
---|---|---|
id | string | The ID of the resource. |
name | string | The name of the resource. |
etag | string | The ETag of the resource, used for concurrency statements. |
properties | object | Detector response properties. |
tags | object | The tags of the resource. |
type | string | The type of the resource. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | accountName, detectorId, resourceGroupName, subscriptionId | Gets information about the given detector for a given Batch account. |
list | SELECT | accountName, resourceGroupName, subscriptionId | Gets information about the detectors available for a given Batch account. |
SELECT
examples
Gets information about the detectors available for a given Batch account.
- vw_account_detectors
- account_detectors
SELECT
id,
name,
accountName,
detectorId,
etag,
resourceGroupName,
subscriptionId,
tags,
type,
value
FROM azure.batch.vw_account_detectors
WHERE accountName = '{{ accountName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';
SELECT
id,
name,
etag,
properties,
tags,
type
FROM azure.batch.account_detectors
WHERE accountName = '{{ accountName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';