Skip to main content

private_endpoint_connections

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

Overview

Nameprivate_endpoint_connections
TypeResource
Idazure.synapse.private_endpoint_connections

Fields

The following fields are returned by SELECT queries:

Private endpoint connection

NameDatatypeDescription
propertiesobjectPrivate endpoint connection properties.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectGets a private endpoint connection.
listselectsubscriptionId, resourceGroupName, workspaceNameLists private endpoint connection in workspace.
createinsertApprove or reject a private endpoint connection.
deletedeleteDelete a private endpoint connection.

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
resourceGroupNamestringThe name of the resource group. The name is case insensitive.
subscriptionIdstringThe ID of the target subscription.
workspaceNamestringThe name of the workspace.

SELECT examples

Gets a private endpoint connection.

SELECT
properties
FROM azure.synapse.private_endpoint_connections
;

INSERT examples

Approve or reject a private endpoint connection.

INSERT INTO azure.synapse.private_endpoint_connections (
data__properties
)
SELECT
'{{ properties }}'
RETURNING
properties
;

DELETE examples

Delete a private endpoint connection.

DELETE FROM azure.synapse.private_endpoint_connections
;