vw_namespaces
Creates, updates, deletes, gets or lists a vw_namespaces
resource.
Overview
Name | vw_namespaces |
Type | View |
Id | azure.event_grid.vw_namespaces |
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,
systemData as system_data,
JSON_EXTRACT(properties, '$.privateEndpointConnections') as "private_endpoint_connections",
JSON_EXTRACT(properties, '$.provisioningState') as "provisioning_state",
JSON_EXTRACT(properties, '$.topicsConfiguration') as "topics_configuration",
JSON_EXTRACT(properties, '$.topicSpacesConfiguration') as "topic_spaces_configuration",
JSON_EXTRACT(properties, '$.isZoneRedundant') as "is_zone_redundant",
JSON_EXTRACT(properties, '$.publicNetworkAccess') as "public_network_access",
JSON_EXTRACT(properties, '$.inboundIpRules') as "inbound_ip_rules",
JSON_EXTRACT(properties, '$.minimumTlsVersionAllowed') as "minimum_tls_version_allowed",
subscriptionId,
resourceGroupName,
namespaceName
FROM azure.event_grid.namespaces
WHERE subscriptionId = 'replace-me';
SELECT
location as location,
tags as tags,
sku as sku,
identity as identity,
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, '$.topicsConfiguration') as "topics_configuration",
json_extract_path_text(properties, '$.topicSpacesConfiguration') as "topic_spaces_configuration",
json_extract_path_text(properties, '$.isZoneRedundant') as "is_zone_redundant",
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, '$.minimumTlsVersionAllowed') as "minimum_tls_version_allowed",
subscriptionId,
resourceGroupName,
namespaceName
FROM azure.event_grid.namespaces
WHERE subscriptionId = 'replace-me';