Skip to main content

private_endpoint_connections_private_link_hubs

Creates, updates, deletes, gets or lists a private_endpoint_connections_private_link_hubs resource.

Overview

Nameprivate_endpoint_connections_private_link_hubs
TypeResource
Idazure.synapse.private_endpoint_connections_private_link_hubs

Fields

NameDatatypeDescription
idtextidentifier
privateEndpointConnectionNametextfield from the properties object
privateLinkHubNametextfield from the properties object
private_endpointtextfield from the properties object
private_link_service_connection_statetextfield from the properties object
provisioning_statetextfield from the properties object
resourceGroupNametextfield from the properties object
subscriptionIdtextfield from the properties object

Methods

NameAccessible byRequired ParamsDescription
getSELECTprivateEndpointConnectionName, privateLinkHubName, resourceGroupName, subscriptionIdGet all PrivateEndpointConnection in the PrivateLinkHub by name
listSELECTprivateLinkHubName, resourceGroupName, subscriptionIdGet all PrivateEndpointConnections in the PrivateLinkHub

SELECT examples

Get all PrivateEndpointConnections in the PrivateLinkHub

SELECT
id,
privateEndpointConnectionName,
privateLinkHubName,
private_endpoint,
private_link_service_connection_state,
provisioning_state,
resourceGroupName,
subscriptionId
FROM azure.synapse.vw_private_endpoint_connections_private_link_hubs
WHERE privateLinkHubName = '{{ privateLinkHubName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';