vw_extension_topics
Creates, updates, deletes, gets or lists a vw_extension_topics
resource.
Overview
Name | vw_extension_topics |
Type | View |
Id | azure.event_grid.vw_extension_topics |
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, '$.description') as "description",
JSON_EXTRACT(properties, '$.systemTopic') as "system_topic",
scope
FROM azure.event_grid.extension_topics
WHERE scope = 'replace-me';
SELECT
id as id,
name as name,
type as type,
systemData as system_data,
json_extract_path_text(properties, '$.description') as "description",
json_extract_path_text(properties, '$.systemTopic') as "system_topic",
scope
FROM azure.event_grid.extension_topics
WHERE scope = 'replace-me';