vw_inbound_endpoints
Creates, updates, deletes, gets or lists a vw_inbound_endpoints
resource.
Overview
Name | vw_inbound_endpoints |
Type | View |
Id | azure.dns_resolver.vw_inbound_endpoints |
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, '$.ipConfigurations') as "ip_configurations",
JSON_EXTRACT(properties, '$.provisioningState') as "provisioning_state",
JSON_EXTRACT(properties, '$.resourceGuid') as "resource_guid",
subscriptionId,
resourceGroupName,
dnsResolverName,
inboundEndpointName
FROM azure.dns_resolver.inbound_endpoints
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND dnsResolverName = 'replace-me';
SELECT
location as location,
etag as etag,
systemData as system_data,
tags as tags,
json_extract_path_text(properties, '$.ipConfigurations') as "ip_configurations",
json_extract_path_text(properties, '$.provisioningState') as "provisioning_state",
json_extract_path_text(properties, '$.resourceGuid') as "resource_guid",
subscriptionId,
resourceGroupName,
dnsResolverName,
inboundEndpointName
FROM azure.dns_resolver.inbound_endpoints
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND dnsResolverName = 'replace-me';