vw_system_topics
Creates, updates, deletes, gets or lists a vw_system_topics
resource.
Overview
Name | vw_system_topics |
Type | View |
Id | azure.event_grid.vw_system_topics |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
location as location,
tags as tags,
systemData as system_data,
identity as identity,
JSON_EXTRACT(properties, '$.provisioningState') as "provisioning_state",
JSON_EXTRACT(properties, '$.source') as "source",
JSON_EXTRACT(properties, '$.topicType') as "topic_type",
JSON_EXTRACT(properties, '$.metricResourceId') as "metric_resource_id",
subscriptionId,
resourceGroupName,
systemTopicName
FROM azure.event_grid.system_topics
WHERE subscriptionId = 'replace-me';
SELECT
location as location,
tags as tags,
systemData as system_data,
identity as identity,
json_extract_path_text(properties, '$.provisioningState') as "provisioning_state",
json_extract_path_text(properties, '$.source') as "source",
json_extract_path_text(properties, '$.topicType') as "topic_type",
json_extract_path_text(properties, '$.metricResourceId') as "metric_resource_id",
subscriptionId,
resourceGroupName,
systemTopicName
FROM azure.event_grid.system_topics
WHERE subscriptionId = 'replace-me';