Skip to main content

alert_operations

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

Overview

Namealert_operations
TypeResource
Idazure.authorization.alert_operations

Fields

The following fields are returned by SELECT queries:

OK - Returns information about the status of the operation.

NameDatatypeDescription
idstringThe id of the alert operation.
createdDateTimestring (date-time)The created date of the alert operation.
lastActionDateTimestring (date-time)The last action date of the alert operation.
resourceLocationstringThe location of the alert associated with the operation.
statusstringThe status of the alert operation.
statusDetailstringThe status detail of the alert operation.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectscope, operationIdGet the specified alert operation.

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
operationIdstringThe id of the alert operation.
scopestringThe scope of the alert operation.

SELECT examples

Get the specified alert operation.

SELECT
id,
createdDateTime,
lastActionDateTime,
resourceLocation,
status,
statusDetail
FROM azure.authorization.alert_operations
WHERE scope = '{{ scope }}' -- required
AND operationId = '{{ operationId }}' -- required
;