Skip to main content

private_endpoint_connections

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

Overview

Nameprivate_endpoint_connections
TypeResource
Idazure.data_factory.private_endpoint_connections

Fields

NameDatatypeDescription
idtextThe resource identifier.
nametextThe resource name.
etagtextEtag identifies change in the resource.
factoryNametextfield from the properties object
privateEndpointConnectionNametextfield 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
typetextThe resource type.

Methods

NameAccessible byRequired ParamsDescription
getSELECTfactoryName, privateEndpointConnectionName, resourceGroupName, subscriptionIdGets a private endpoint connection
create_or_updateINSERTfactoryName, privateEndpointConnectionName, resourceGroupName, subscriptionIdApproves or rejects a private endpoint connection
deleteDELETEfactoryName, privateEndpointConnectionName, resourceGroupName, subscriptionIdDeletes a private endpoint connection

SELECT examples

Gets a private endpoint connection

SELECT
id,
name,
etag,
factoryName,
privateEndpointConnectionName,
private_endpoint,
private_link_service_connection_state,
provisioning_state,
resourceGroupName,
subscriptionId,
type
FROM azure.data_factory.vw_private_endpoint_connections
WHERE factoryName = '{{ factoryName }}'
AND privateEndpointConnectionName = '{{ privateEndpointConnectionName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';

INSERT example

Use the following StackQL query and manifest file to create a new private_endpoint_connections resource.

/*+ create */
INSERT INTO azure.data_factory.private_endpoint_connections (
factoryName,
privateEndpointConnectionName,
resourceGroupName,
subscriptionId,
properties
)
SELECT
'{{ factoryName }}',
'{{ privateEndpointConnectionName }}',
'{{ resourceGroupName }}',
'{{ subscriptionId }}',
'{{ properties }}'
;

DELETE example

Deletes the specified private_endpoint_connections resource.

/*+ delete */
DELETE FROM azure.data_factory.private_endpoint_connections
WHERE factoryName = '{{ factoryName }}'
AND privateEndpointConnectionName = '{{ privateEndpointConnectionName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';