Skip to main content

alert_incidents

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

Overview

Namealert_incidents
TypeResource
Idazure.authorization.alert_incidents

Fields

NameDatatypeDescription
idtextThe alert incident ID.
nametextThe alert incident name.
alertIdtextfield from the properties object
alertIncidentIdtextfield from the properties object
alert_incident_typetextfield from the properties object
scopetextfield from the properties object
typetextThe alert incident type.

Methods

NameAccessible byRequired ParamsDescription
getSELECTalertId, alertIncidentId, scopeGet the specified alert incident.
list_for_scopeSELECTalertId, scopeGets alert incidents for a resource scope.
remediateEXECalertId, alertIncidentId, scopeRemediate an alert incident.

SELECT examples

Gets alert incidents for a resource scope.

SELECT
id,
name,
alertId,
alertIncidentId,
alert_incident_type,
scope,
type
FROM azure.authorization.vw_alert_incidents
WHERE alertId = '{{ alertId }}'
AND scope = '{{ scope }}';