Skip to main content

private_endpoint_connections

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

Overview

Nameprivate_endpoint_connections
TypeResource
Idazure_extras.healthcare.private_endpoint_connections

Fields

The following fields are returned by SELECT queries:

The request was successful; the request was well-formed and received properly.

NameDatatypeDescription
propertiesobjectResource properties.
systemDataobjectMetadata pertaining to creation and last modification of the resource.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectsubscriptionId, resourceGroupName, resourceName, privateEndpointConnectionNameGets the specified private endpoint connection associated with the service.
list_by_serviceselectsubscriptionId, resourceGroupName, resourceNameLists all private endpoint connections for a service.
create_or_updateinsertsubscriptionId, resourceGroupName, resourceName, privateEndpointConnectionNameUpdate the state of the specified private endpoint connection associated with the service.
deletedeletesubscriptionId, resourceGroupName, resourceName, privateEndpointConnectionNameDeletes 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
privateEndpointConnectionNamestringThe name of the private endpoint connection associated with the Azure resource
resourceGroupNamestringThe name of the resource group that contains the service instance.
resourceNamestringThe name of the service instance.
subscriptionIdstringThe ID of the target subscription.

SELECT examples

Gets the specified private endpoint connection associated with the service.

SELECT
properties,
systemData
FROM azure_extras.healthcare.private_endpoint_connections
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND resourceName = '{{ resourceName }}' -- required
AND privateEndpointConnectionName = '{{ privateEndpointConnectionName }}' -- required
;

INSERT examples

Update the state of the specified private endpoint connection associated with the service.

INSERT INTO azure_extras.healthcare.private_endpoint_connections (
data__properties,
subscriptionId,
resourceGroupName,
resourceName,
privateEndpointConnectionName
)
SELECT
'{{ properties }}',
'{{ subscriptionId }}',
'{{ resourceGroupName }}',
'{{ resourceName }}',
'{{ privateEndpointConnectionName }}'
RETURNING
properties,
systemData
;

DELETE examples

Deletes a private endpoint connection.

DELETE FROM azure_extras.healthcare.private_endpoint_connections
WHERE subscriptionId = '{{ subscriptionId }}' --required
AND resourceGroupName = '{{ resourceGroupName }}' --required
AND resourceName = '{{ resourceName }}' --required
AND privateEndpointConnectionName = '{{ privateEndpointConnectionName }}' --required
;