vw_topics
Creates, updates, deletes, gets or lists a vw_topics
resource.
Overview
Name | vw_topics |
Type | View |
Id | azure.event_grid.vw_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,
sku as sku,
identity as identity,
kind as kind,
extendedLocation as extended_location,
systemData as system_data,
JSON_EXTRACT(properties, '$.privateEndpointConnections') as "private_endpoint_connections",
JSON_EXTRACT(properties, '$.provisioningState') as "provisioning_state",
JSON_EXTRACT(properties, '$.endpoint') as "endpoint",
JSON_EXTRACT(properties, '$.eventTypeInfo') as "event_type_info",
JSON_EXTRACT(properties, '$.minimumTlsVersionAllowed') as "minimum_tls_version_allowed",
JSON_EXTRACT(properties, '$.inputSchema') as "input_schema",
JSON_EXTRACT(properties, '$.inputSchemaMapping') as "input_schema_mapping",
JSON_EXTRACT(properties, '$.metricResourceId') as "metric_resource_id",
JSON_EXTRACT(properties, '$.publicNetworkAccess') as "public_network_access",
JSON_EXTRACT(properties, '$.inboundIpRules') as "inbound_ip_rules",
JSON_EXTRACT(properties, '$.disableLocalAuth') as "disable_local_auth",
JSON_EXTRACT(properties, '$.dataResidencyBoundary') as "data_residency_boundary",
subscriptionId,
resourceGroupName,
topicName
FROM azure.event_grid.topics
WHERE subscriptionId = 'replace-me';
SELECT
location as location,
tags as tags,
sku as sku,
identity as identity,
kind as kind,
extendedLocation as extended_location,
systemData as system_data,
json_extract_path_text(properties, '$.privateEndpointConnections') as "private_endpoint_connections",
json_extract_path_text(properties, '$.provisioningState') as "provisioning_state",
json_extract_path_text(properties, '$.endpoint') as "endpoint",
json_extract_path_text(properties, '$.eventTypeInfo') as "event_type_info",
json_extract_path_text(properties, '$.minimumTlsVersionAllowed') as "minimum_tls_version_allowed",
json_extract_path_text(properties, '$.inputSchema') as "input_schema",
json_extract_path_text(properties, '$.inputSchemaMapping') as "input_schema_mapping",
json_extract_path_text(properties, '$.metricResourceId') as "metric_resource_id",
json_extract_path_text(properties, '$.publicNetworkAccess') as "public_network_access",
json_extract_path_text(properties, '$.inboundIpRules') as "inbound_ip_rules",
json_extract_path_text(properties, '$.disableLocalAuth') as "disable_local_auth",
json_extract_path_text(properties, '$.dataResidencyBoundary') as "data_residency_boundary",
subscriptionId,
resourceGroupName,
topicName
FROM azure.event_grid.topics
WHERE subscriptionId = 'replace-me';