vw_notification_channels
Creates, updates, deletes, gets or lists a vw_notification_channels
resource.
Overview
Name | vw_notification_channels |
Type | View |
Id | azure.dev_test_labs.vw_notification_channels |
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, '$.webHookUrl') as "web_hook_url",
JSON_EXTRACT(properties, '$.emailRecipient') as "email_recipient",
JSON_EXTRACT(properties, '$.notificationLocale') as "notification_locale",
JSON_EXTRACT(properties, '$.description') as "description",
JSON_EXTRACT(properties, '$.events') as "events",
JSON_EXTRACT(properties, '$.createdDate') as "created_date",
JSON_EXTRACT(properties, '$.provisioningState') as "provisioning_state",
JSON_EXTRACT(properties, '$.uniqueIdentifier') as "unique_identifier",
subscriptionId,
resourceGroupName,
labName,
name
FROM azure.dev_test_labs.notification_channels
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND labName = 'replace-me';
SELECT
id as id,
name as name,
location as location,
type as type,
tags as tags,
json_extract_path_text(properties, '$.webHookUrl') as "web_hook_url",
json_extract_path_text(properties, '$.emailRecipient') as "email_recipient",
json_extract_path_text(properties, '$.notificationLocale') as "notification_locale",
json_extract_path_text(properties, '$.description') as "description",
json_extract_path_text(properties, '$.events') as "events",
json_extract_path_text(properties, '$.createdDate') as "created_date",
json_extract_path_text(properties, '$.provisioningState') as "provisioning_state",
json_extract_path_text(properties, '$.uniqueIdentifier') as "unique_identifier",
subscriptionId,
resourceGroupName,
labName,
name
FROM azure.dev_test_labs.notification_channels
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND labName = 'replace-me';