private_end_point_connections
Creates, updates, deletes, gets or lists a private_end_point_connections
resource.
Overview
Name | private_end_point_connections |
Type | Resource |
Id | azure.data_factory.private_end_point_connections |
Fields
Name | Datatype | Description |
---|---|---|
id | string | The resource identifier. |
name | string | The resource name. |
etag | string | Etag identifies change in the resource. |
properties | object | A remote private endpoint connection |
type | string | The resource type. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
list_by_factory | SELECT | factoryName, resourceGroupName, subscriptionId | Lists Private endpoint connections |
SELECT
examples
Lists Private endpoint connections
SELECT
id,
name,
etag,
properties,
type
FROM azure.data_factory.private_end_point_connections
WHERE factoryName = '{{ factoryName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';