vw_namespace_topics
Creates, updates, deletes, gets or lists a vw_namespace_topics
resource.
Overview
Name | vw_namespace_topics |
Type | View |
Id | azure.event_grid.vw_namespace_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",
JSON_EXTRACT(properties, '$.publisherType') as "publisher_type",
JSON_EXTRACT(properties, '$.inputSchema') as "input_schema",
JSON_EXTRACT(properties, '$.eventRetentionInDays') as "event_retention_in_days",
subscriptionId,
resourceGroupName,
namespaceName,
topicName
FROM azure.event_grid.namespace_topics
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND namespaceName = '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, '$.publisherType') as "publisher_type",
json_extract_path_text(properties, '$.inputSchema') as "input_schema",
json_extract_path_text(properties, '$.eventRetentionInDays') as "event_retention_in_days",
subscriptionId,
resourceGroupName,
namespaceName,
topicName
FROM azure.event_grid.namespace_topics
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND namespaceName = 'replace-me';