vw_private_endpoint_connections_private_link_hubs
Creates, updates, deletes, gets or lists a vw_private_endpoint_connections_private_link_hubs
resource.
Overview
Name | vw_private_endpoint_connections_private_link_hubs |
Type | View |
Id | azure.synapse.vw_private_endpoint_connections_private_link_hubs |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
id as id,
JSON_EXTRACT(properties, '$.privateEndpoint') as "private_endpoint",
JSON_EXTRACT(properties, '$.privateLinkServiceConnectionState') as "private_link_service_connection_state",
JSON_EXTRACT(properties, '$.provisioningState') as "provisioning_state",
subscriptionId,
resourceGroupName,
privateLinkHubName,
privateEndpointConnectionName
FROM azure.synapse.private_endpoint_connections_private_link_hubs
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND privateLinkHubName = 'replace-me';
SELECT
id as id,
json_extract_path_text(properties, '$.privateEndpoint') as "private_endpoint",
json_extract_path_text(properties, '$.privateLinkServiceConnectionState') as "private_link_service_connection_state",
json_extract_path_text(properties, '$.provisioningState') as "provisioning_state",
subscriptionId,
resourceGroupName,
privateLinkHubName,
privateEndpointConnectionName
FROM azure.synapse.private_endpoint_connections_private_link_hubs
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND privateLinkHubName = 'replace-me';