vw_private_link_services
Creates, updates, deletes, gets or lists a vw_private_link_services
resource.
Overview
Name | vw_private_link_services |
Type | View |
Id | azure.network.vw_private_link_services |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
id as id,
name as name,
extendedLocation as extended_location,
etag as etag,
type as type,
systemData as system_data,
JSON_EXTRACT(properties, '$.loadBalancerFrontendIpConfigurations') as "load_balancer_frontend_ip_configurations",
JSON_EXTRACT(properties, '$.ipConfigurations') as "ip_configurations",
JSON_EXTRACT(properties, '$.destinationIPAddress') as "destination_ip_address",
JSON_EXTRACT(properties, '$.networkInterfaces') as "network_interfaces",
JSON_EXTRACT(properties, '$.provisioningState') as "provisioning_state",
JSON_EXTRACT(properties, '$.privateEndpointConnections') as "private_endpoint_connections",
JSON_EXTRACT(properties, '$.visibility') as "visibility",
JSON_EXTRACT(properties, '$.autoApproval') as "auto_approval",
JSON_EXTRACT(properties, '$.fqdns') as "fqdns",
JSON_EXTRACT(properties, '$.alias') as "alias",
JSON_EXTRACT(properties, '$.enableProxyProtocol') as "enable_proxy_protocol",
subscriptionId,
resourceGroupName,
serviceName
FROM azure.network.private_link_services
WHERE subscriptionId = 'replace-me';
SELECT
id as id,
name as name,
extendedLocation as extended_location,
etag as etag,
type as type,
systemData as system_data,
json_extract_path_text(properties, '$.loadBalancerFrontendIpConfigurations') as "load_balancer_frontend_ip_configurations",
json_extract_path_text(properties, '$.ipConfigurations') as "ip_configurations",
json_extract_path_text(properties, '$.destinationIPAddress') as "destination_ip_address",
json_extract_path_text(properties, '$.networkInterfaces') as "network_interfaces",
json_extract_path_text(properties, '$.provisioningState') as "provisioning_state",
json_extract_path_text(properties, '$.privateEndpointConnections') as "private_endpoint_connections",
json_extract_path_text(properties, '$.visibility') as "visibility",
json_extract_path_text(properties, '$.autoApproval') as "auto_approval",
json_extract_path_text(properties, '$.fqdns') as "fqdns",
json_extract_path_text(properties, '$.alias') as "alias",
json_extract_path_text(properties, '$.enableProxyProtocol') as "enable_proxy_protocol",
subscriptionId,
resourceGroupName,
serviceName
FROM azure.network.private_link_services
WHERE subscriptionId = 'replace-me';