vw_domain_topics
Creates, updates, deletes, gets or lists a vw_domain_topics
resource.
Overview
Name | vw_domain_topics |
Type | View |
Id | azure.event_grid.vw_domain_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, '$.provisioningState') as "provisioning_state",
subscriptionId,
resourceGroupName,
domainName,
domainTopicName
FROM azure.event_grid.domain_topics
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND domainName = '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",
subscriptionId,
resourceGroupName,
domainName,
domainTopicName
FROM azure.event_grid.domain_topics
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND domainName = 'replace-me';