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

NameDatatypeDescription
deidServiceNametextfield from the properties object
group_idstextfield 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

Methods

NameAccessible byRequired ParamsDescription
getSELECTdeidServiceName, privateEndpointConnectionName, resourceGroupName, subscriptionIdGet a specific private connection
list_by_deid_serviceSELECTdeidServiceName, resourceGroupName, subscriptionIdList private endpoint connections on the given resource
createINSERTdeidServiceName, privateEndpointConnectionName, resourceGroupName, subscriptionIdCreate a Private endpoint connection
deleteDELETEdeidServiceName, privateEndpointConnectionName, resourceGroupName, subscriptionIdDelete the private endpoint connection

SELECT examples

List private endpoint connections on the given resource

SELECT
deidServiceName,
group_ids,
privateEndpointConnectionName,
private_endpoint,
private_link_service_connection_state,
provisioning_state,
resourceGroupName,
subscriptionId
FROM azure.healthdataaiservices.vw_private_endpoint_connections
WHERE deidServiceName = '{{ deidServiceName }}'
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.healthdataaiservices.private_endpoint_connections (
deidServiceName,
privateEndpointConnectionName,
resourceGroupName,
subscriptionId,
properties
)
SELECT
'{{ deidServiceName }}',
'{{ privateEndpointConnectionName }}',
'{{ resourceGroupName }}',
'{{ subscriptionId }}',
'{{ properties }}'
;

DELETE example

Deletes the specified private_endpoint_connections resource.

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