Skip to main content

account_detectors

Creates, updates, deletes, gets or lists a account_detectors resource.

Overview

Nameaccount_detectors
TypeResource
Idazure.batch.account_detectors

Fields

NameDatatypeDescription
idtextThe ID of the resource.
nametextThe name of the resource.
accountNametextfield from the properties object
detectorIdtextfield from the properties object
etagtextThe ETag of the resource, used for concurrency statements.
resourceGroupNametextfield from the properties object
subscriptionIdtextfield from the properties object
tagstextThe tags of the resource.
typetextThe type of the resource.
valuetextfield from the properties object

Methods

NameAccessible byRequired ParamsDescription
getSELECTaccountName, detectorId, resourceGroupName, subscriptionIdGets information about the given detector for a given Batch account.
listSELECTaccountName, resourceGroupName, subscriptionIdGets information about the detectors available for a given Batch account.

SELECT examples

Gets information about the detectors available for a given Batch account.

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 }}';