alert_incidents
Creates, updates, deletes, gets or lists a alert_incidents
resource.
Overview
Name | alert_incidents |
Type | Resource |
Id | azure.authorization.alert_incidents |
Fields
- vw_alert_incidents
- alert_incidents
Name | Datatype | Description |
---|---|---|
id | text | The alert incident ID. |
name | text | The alert incident name. |
alertId | text | field from the properties object |
alertIncidentId | text | field from the properties object |
alert_incident_type | text | field from the properties object |
scope | text | field from the properties object |
type | text | The alert incident type. |
Name | Datatype | Description |
---|---|---|
id | string | The alert incident ID. |
name | string | The alert incident name. |
properties | object | Alert incident properties |
type | string | The alert incident type. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | alertId, alertIncidentId, scope | Get the specified alert incident. |
list_for_scope | SELECT | alertId, scope | Gets alert incidents for a resource scope. |
remediate | EXEC | alertId, alertIncidentId, scope | Remediate an alert incident. |
SELECT
examples
Gets alert incidents for a resource scope.
- vw_alert_incidents
- alert_incidents
SELECT
id,
name,
alertId,
alertIncidentId,
alert_incident_type,
scope,
type
FROM azure.authorization.vw_alert_incidents
WHERE alertId = '{{ alertId }}'
AND scope = '{{ scope }}';
SELECT
id,
name,
properties,
type
FROM azure.authorization.alert_incidents
WHERE alertId = '{{ alertId }}'
AND scope = '{{ scope }}';