Skip to main content

vw_channels

Creates, updates, deletes, gets or lists a vw_channels resource.

Overview

Namevw_channels
TypeView
Idazure.event_grid.vw_channels

Fields

See the SQL Definition (view DDL) for fields returned by this view.

SQL Definition

SELECT
id as id,
name as name,
type as type,
systemData as system_data,
JSON_EXTRACT(properties, '$.channelType') as "channel_type",
JSON_EXTRACT(properties, '$.partnerTopicInfo') as "partner_topic_info",
JSON_EXTRACT(properties, '$.partnerDestinationInfo') as "partner_destination_info",
JSON_EXTRACT(properties, '$.messageForActivation') as "message_for_activation",
JSON_EXTRACT(properties, '$.provisioningState') as "provisioning_state",
JSON_EXTRACT(properties, '$.readinessState') as "readiness_state",
JSON_EXTRACT(properties, '$.expirationTimeIfNotActivatedUtc') as "expiration_time_if_not_activated_utc",
subscriptionId,
resourceGroupName,
partnerNamespaceName,
channelName
FROM azure.event_grid.channels
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND partnerNamespaceName = 'replace-me';