vw_channels
Creates, updates, deletes, gets or lists a vw_channels
resource.
Overview
Name | vw_channels |
Type | View |
Id | azure.engagement_fabric.vw_channels |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
JSON_EXTRACT(properties, '$.channelType') as "channel_type",
JSON_EXTRACT(properties, '$.channelFunctions') as "channel_functions",
JSON_EXTRACT(properties, '$.credentials') as "credentials",
subscriptionId,
resourceGroupName,
accountName,
channelName
FROM azure.engagement_fabric.channels
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND accountName = 'replace-me';
SELECT
json_extract_path_text(properties, '$.channelType') as "channel_type",
json_extract_path_text(properties, '$.channelFunctions') as "channel_functions",
json_extract_path_text(properties, '$.credentials') as "credentials",
subscriptionId,
resourceGroupName,
accountName,
channelName
FROM azure.engagement_fabric.channels
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND accountName = 'replace-me';