vw_namespace_topic_event_subscriptions
Creates, updates, deletes, gets or lists a vw_namespace_topic_event_subscriptions
resource.
Overview
Name | vw_namespace_topic_event_subscriptions |
Type | View |
Id | azure.event_grid.vw_namespace_topic_event_subscriptions |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
id as id,
name as name,
type as type,
systemData as system_data,
JSON_EXTRACT(properties, '$.provisioningState') as "provisioning_state",
JSON_EXTRACT(properties, '$.deliveryConfiguration') as "delivery_configuration",
JSON_EXTRACT(properties, '$.eventDeliverySchema') as "event_delivery_schema",
JSON_EXTRACT(properties, '$.filtersConfiguration') as "filters_configuration",
JSON_EXTRACT(properties, '$.expirationTimeUtc') as "expiration_time_utc",
subscriptionId,
resourceGroupName,
namespaceName,
topicName,
eventSubscriptionName
FROM azure.event_grid.namespace_topic_event_subscriptions
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND namespaceName = 'replace-me' AND topicName = 'replace-me';
SELECT
id as id,
name as name,
type as type,
systemData as system_data,
json_extract_path_text(properties, '$.provisioningState') as "provisioning_state",
json_extract_path_text(properties, '$.deliveryConfiguration') as "delivery_configuration",
json_extract_path_text(properties, '$.eventDeliverySchema') as "event_delivery_schema",
json_extract_path_text(properties, '$.filtersConfiguration') as "filters_configuration",
json_extract_path_text(properties, '$.expirationTimeUtc') as "expiration_time_utc",
subscriptionId,
resourceGroupName,
namespaceName,
topicName,
eventSubscriptionName
FROM azure.event_grid.namespace_topic_event_subscriptions
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND namespaceName = 'replace-me' AND topicName = 'replace-me';