Skip to main content

private_end_point_connections

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

Overview

Nameprivate_end_point_connections
TypeResource
Idazure.data_factory.private_end_point_connections

Fields

NameDatatypeDescription
idstringThe resource identifier.
namestringThe resource name.
etagstringEtag identifies change in the resource.
propertiesobjectA remote private endpoint connection
typestringThe resource type.

Methods

NameAccessible byRequired ParamsDescription
list_by_factorySELECTfactoryName, resourceGroupName, subscriptionIdLists 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 }}';