Skip to main content

alert_operations

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

Overview

Namealert_operations
TypeResource
Idazure.authorization.alert_operations

Fields

NameDatatypeDescription
idstringThe id of the alert operation.
createdDateTimestringThe created date of the alert operation.
lastActionDateTimestringThe 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

NameAccessible byRequired ParamsDescription
getSELECToperationId, scopeGet 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 }}';