vw_action_groups
Creates, updates, deletes, gets or lists a vw_action_groups
resource.
Overview
Name | vw_action_groups |
Type | View |
Id | azure.monitor.vw_action_groups |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
id as id,
name as name,
location as location,
type as type,
tags as tags,
JSON_EXTRACT(properties, '$.actionGroupId') as "action_group_id",
JSON_EXTRACT(properties, '$.webhookProperties') as "webhook_properties",
subscriptionId,
resourceGroupName,
actionGroupName
FROM azure.monitor.action_groups
WHERE subscriptionId = 'replace-me';
SELECT
id as id,
name as name,
location as location,
type as type,
tags as tags,
json_extract_path_text(properties, '$.actionGroupId') as "action_group_id",
json_extract_path_text(properties, '$.webhookProperties') as "webhook_properties",
subscriptionId,
resourceGroupName,
actionGroupName
FROM azure.monitor.action_groups
WHERE subscriptionId = 'replace-me';