vw_dns_resolvers
Creates, updates, deletes, gets or lists a vw_dns_resolvers
resource.
Overview
Name | vw_dns_resolvers |
Type | View |
Id | azure.dns_resolver.vw_dns_resolvers |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
location as location,
etag as etag,
systemData as system_data,
tags as tags,
JSON_EXTRACT(properties, '$.virtualNetwork') as "virtual_network",
JSON_EXTRACT(properties, '$.dnsResolverState') as "dns_resolver_state",
JSON_EXTRACT(properties, '$.provisioningState') as "provisioning_state",
JSON_EXTRACT(properties, '$.resourceGuid') as "resource_guid",
subscriptionId,
resourceGroupName,
dnsResolverName
FROM azure.dns_resolver.dns_resolvers
WHERE subscriptionId = 'replace-me';
SELECT
location as location,
etag as etag,
systemData as system_data,
tags as tags,
json_extract_path_text(properties, '$.virtualNetwork') as "virtual_network",
json_extract_path_text(properties, '$.dnsResolverState') as "dns_resolver_state",
json_extract_path_text(properties, '$.provisioningState') as "provisioning_state",
json_extract_path_text(properties, '$.resourceGuid') as "resource_guid",
subscriptionId,
resourceGroupName,
dnsResolverName
FROM azure.dns_resolver.dns_resolvers
WHERE subscriptionId = 'replace-me';