Skip to main content

private_endpoint_connections_private_link_hub

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

Overview

Nameprivate_endpoint_connections_private_link_hub
TypeResource
Idazure.synapse.private_endpoint_connections_private_link_hub

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstring:vartype id: str
namestring:vartype name: str
privateEndpointobjectThe private endpoint which the connection belongs to.
privateLinkServiceConnectionStateobjectConnection state of the private endpoint connection.
provisioningStatestringProvisioning state of the private endpoint connection.
typestring:vartype type: str

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectresource_group_name, private_link_hub_name, private_endpoint_connection_name, subscription_idGet all PrivateEndpointConnection in the PrivateLinkHub by name.
listselectresource_group_name, private_link_hub_name, subscription_idGet all PrivateEndpointConnections in the PrivateLinkHub.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
private_endpoint_connection_namestringName of the privateEndpointConnection. Required.
resource_group_namestringThe name of the resource group. The name is case insensitive. Required.
subscription_idstring

SELECT examples

Get all PrivateEndpointConnection in the PrivateLinkHub by name.

SELECT
id,
name,
privateEndpoint,
privateLinkServiceConnectionState,
provisioningState,
type
FROM azure.synapse.private_endpoint_connections_private_link_hub
WHERE resource_group_name = '{{ resource_group_name }}' -- required
AND private_link_hub_name = '{{ private_link_hub_name }}' -- required
AND private_endpoint_connection_name = '{{ private_endpoint_connection_name }}' -- required
AND subscription_id = '{{ subscription_id }}' -- required
;