Skip to main content

workspace_private_endpoint_connections

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

Overview

Nameworkspace_private_endpoint_connections
TypeResource
Idazure_extras.healthcare.workspace_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, workspaceName, privateEndpointConnectionNameGets the specified private endpoint connection associated with the workspace.
list_by_workspaceselectsubscriptionId, resourceGroupName, workspaceNameLists all private endpoint connections for a workspace.
create_or_updateinsertsubscriptionId, resourceGroupName, workspaceName, privateEndpointConnectionNameUpdate the state of the specified private endpoint connection associated with the workspace.
deletedeletesubscriptionId, resourceGroupName, workspaceName, 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.
subscriptionIdstringThe ID of the target subscription.
workspaceNamestringThe name of workspace resource.

SELECT examples

Gets the specified private endpoint connection associated with the workspace.

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

INSERT examples

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

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

DELETE examples

Deletes a private endpoint connection.

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