alert_operations
Creates, updates, deletes, gets or lists a alert_operations
resource.
Overview
Name | alert_operations |
Type | Resource |
Id | azure.authorization.alert_operations |
Fields
Name | Datatype | Description |
---|---|---|
id | string | The id of the alert operation. |
createdDateTime | string | The created date of the alert operation. |
lastActionDateTime | string | The last action date of the alert operation. |
resourceLocation | string | The location of the alert associated with the operation. |
status | string | The status of the alert operation. |
statusDetail | string | The status detail of the alert operation. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | operationId, scope | Get the specified alert operation. |
SELECT
examples
Get the specified alert operation.
SELECT
id,
createdDateTime,
lastActionDateTime,
resourceLocation,
status,
statusDetail
FROM azure.authorization.alert_operations
WHERE operationId = '{{ operationId }}'
AND scope = '{{ scope }}';