Skip to main content

private_endpoint_connections

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

Overview

Nameprivate_endpoint_connections
TypeResource
Idazure.healthdataaiservices.private_endpoint_connections

Fields

The following fields are returned by SELECT queries:

Azure operation completed successfully.

NameDatatypeDescription
propertiesobjectThe resource-specific properties for this resource.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectsubscriptionId, resourceGroupName, deidServiceName, privateEndpointConnectionNameGet a specific private connection
list_by_deid_serviceselectsubscriptionId, resourceGroupName, deidServiceNameList private endpoint connections on the given resource
createinsertsubscriptionId, resourceGroupName, deidServiceName, privateEndpointConnectionNameCreate a Private endpoint connection
deletedeletesubscriptionId, resourceGroupName, deidServiceName, privateEndpointConnectionNameDelete the 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
deidServiceNamestringThe name of the deid service
privateEndpointConnectionNamestringThe name of the private endpoint connection associated with the Azure resource.
resourceGroupNamestringThe name of the resource group. The name is case insensitive.
subscriptionIdstring (uuid)The ID of the target subscription. The value must be an UUID.

SELECT examples

Get a specific private connection

SELECT
properties
FROM azure.healthdataaiservices.private_endpoint_connections
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND deidServiceName = '{{ deidServiceName }}' -- required
AND privateEndpointConnectionName = '{{ privateEndpointConnectionName }}' -- required
;

INSERT examples

Create a Private endpoint connection

INSERT INTO azure.healthdataaiservices.private_endpoint_connections (
data__properties,
subscriptionId,
resourceGroupName,
deidServiceName,
privateEndpointConnectionName
)
SELECT
'{{ properties }}',
'{{ subscriptionId }}',
'{{ resourceGroupName }}',
'{{ deidServiceName }}',
'{{ privateEndpointConnectionName }}'
RETURNING
properties
;

DELETE examples

Delete the private endpoint connection

DELETE FROM azure.healthdataaiservices.private_endpoint_connections
WHERE subscriptionId = '{{ subscriptionId }}' --required
AND resourceGroupName = '{{ resourceGroupName }}' --required
AND deidServiceName = '{{ deidServiceName }}' --required
AND privateEndpointConnectionName = '{{ privateEndpointConnectionName }}' --required
;