vw_alert_incidents
Creates, updates, deletes, gets or lists a vw_alert_incidents
resource.
Overview
Name | vw_alert_incidents |
Type | View |
Id | azure.authorization.vw_alert_incidents |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
id as id,
name as name,
type as type,
JSON_EXTRACT(properties, '$.alertIncidentType') as "alert_incident_type",
scope,
alertId,
alertIncidentId
FROM azure.authorization.alert_incidents
WHERE scope = 'replace-me' AND alertId = 'replace-me';
SELECT
id as id,
name as name,
type as type,
json_extract_path_text(properties, '$.alertIncidentType') as "alert_incident_type",
scope,
alertId,
alertIncidentId
FROM azure.authorization.alert_incidents
WHERE scope = 'replace-me' AND alertId = 'replace-me';