Skip to main content

vw_alert_definitions

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

Overview

Namevw_alert_definitions
TypeView
Idazure.authorization.vw_alert_definitions

Fields

See the SQL Definition (view DDL) for fields returned by this view.

SQL Definition

SELECT
id as id,
name as name,
type as type,
JSON_EXTRACT(properties, '$.displayName') as "display_name",
JSON_EXTRACT(properties, '$.scope') as "scope",
JSON_EXTRACT(properties, '$.description') as "description",
JSON_EXTRACT(properties, '$.severityLevel') as "severity_level",
JSON_EXTRACT(properties, '$.securityImpact') as "security_impact",
JSON_EXTRACT(properties, '$.mitigationSteps') as "mitigation_steps",
JSON_EXTRACT(properties, '$.howToPrevent') as "how_to_prevent",
JSON_EXTRACT(properties, '$.isRemediatable') as "is_remediatable",
JSON_EXTRACT(properties, '$.isConfigurable') as "is_configurable",
scope,
alertDefinitionId
FROM azure.authorization.alert_definitions
WHERE scope = 'replace-me';