vw_tenant_action_groups
Creates, updates, deletes, gets or lists a vw_tenant_action_groups
resource.
Overview
Name | vw_tenant_action_groups |
Type | View |
Id | azure.monitor.vw_tenant_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, '$.groupShortName') as "group_short_name",
JSON_EXTRACT(properties, '$.enabled') as "enabled",
JSON_EXTRACT(properties, '$.emailReceivers') as "email_receivers",
JSON_EXTRACT(properties, '$.smsReceivers') as "sms_receivers",
JSON_EXTRACT(properties, '$.webhookReceivers') as "webhook_receivers",
JSON_EXTRACT(properties, '$.azureAppPushReceivers') as "azure_app_push_receivers",
JSON_EXTRACT(properties, '$.voiceReceivers') as "voice_receivers",
managementGroupId,
tenantActionGroupName,
"x-ms-client-tenant-id"
FROM azure.monitor.tenant_action_groups
WHERE managementGroupId = 'replace-me' AND "x-ms-client-tenant-id" = 'replace-me';
SELECT
id as id,
name as name,
location as location,
type as type,
tags as tags,
json_extract_path_text(properties, '$.groupShortName') as "group_short_name",
json_extract_path_text(properties, '$.enabled') as "enabled",
json_extract_path_text(properties, '$.emailReceivers') as "email_receivers",
json_extract_path_text(properties, '$.smsReceivers') as "sms_receivers",
json_extract_path_text(properties, '$.webhookReceivers') as "webhook_receivers",
json_extract_path_text(properties, '$.azureAppPushReceivers') as "azure_app_push_receivers",
json_extract_path_text(properties, '$.voiceReceivers') as "voice_receivers",
managementGroupId,
tenantActionGroupName,
"x-ms-client-tenant-id"
FROM azure.monitor.tenant_action_groups
WHERE managementGroupId = 'replace-me' AND "x-ms-client-tenant-id" = 'replace-me';