vw_smart_groups_histories
Creates, updates, deletes, gets or lists a vw_smart_groups_histories
resource.
Overview
Name | vw_smart_groups_histories |
Type | View |
Id | azure.alerts_management.vw_smart_groups_histories |
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, '$.smartGroupId') as "smart_group_id",
JSON_EXTRACT(properties, '$.modifications') as "modifications",
JSON_EXTRACT(properties, '$.nextLink') as "next_link",
subscriptionId,
smartGroupId
FROM azure.alerts_management.smart_groups_histories
WHERE subscriptionId = 'replace-me' AND smartGroupId = 'replace-me';
SELECT
id as id,
name as name,
type as type,
json_extract_path_text(properties, '$.smartGroupId') as "smart_group_id",
json_extract_path_text(properties, '$.modifications') as "modifications",
json_extract_path_text(properties, '$.nextLink') as "next_link",
subscriptionId,
smartGroupId
FROM azure.alerts_management.smart_groups_histories
WHERE subscriptionId = 'replace-me' AND smartGroupId = 'replace-me';