private_endpoint_connections_private_link_hubs
Creates, updates, deletes, gets or lists a private_endpoint_connections_private_link_hubs
resource.
Overview
Name | private_endpoint_connections_private_link_hubs |
Type | Resource |
Id | azure.synapse.private_endpoint_connections_private_link_hubs |
Fields
- vw_private_endpoint_connections_private_link_hubs
- private_endpoint_connections_private_link_hubs
Name | Datatype | Description |
---|---|---|
id | text | identifier |
privateEndpointConnectionName | text | field from the properties object |
privateLinkHubName | text | field from the properties object |
private_endpoint | text | field from the properties object |
private_link_service_connection_state | text | field from the properties object |
provisioning_state | text | field from the properties object |
resourceGroupName | text | field from the properties object |
subscriptionId | text | field from the properties object |
Name | Datatype | Description |
---|---|---|
id | string | identifier |
properties | object | Properties of a private endpoint connection. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | privateEndpointConnectionName, privateLinkHubName, resourceGroupName, subscriptionId | Get all PrivateEndpointConnection in the PrivateLinkHub by name |
list | SELECT | privateLinkHubName, resourceGroupName, subscriptionId | Get all PrivateEndpointConnections in the PrivateLinkHub |
SELECT
examples
Get all PrivateEndpointConnections in the PrivateLinkHub
- vw_private_endpoint_connections_private_link_hubs
- private_endpoint_connections_private_link_hubs
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 }}';
SELECT
id,
properties
FROM azure.synapse.private_endpoint_connections_private_link_hubs
WHERE privateLinkHubName = '{{ privateLinkHubName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';