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

NameDatatypeDescription
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
system_datatextfield from the properties object
workspaceNametextfield from the properties object

Methods

NameAccessible byRequired ParamsDescription
getSELECTprivateEndpointConnectionName, resourceGroupName, subscriptionId, workspaceNameGets the specified private endpoint connection associated with the workspace.
list_by_workspaceSELECTresourceGroupName, subscriptionId, workspaceNameLists all private endpoint connections for a workspace.
create_or_updateINSERTprivateEndpointConnectionName, resourceGroupName, subscriptionId, workspaceNameUpdate the state of the specified private endpoint connection associated with the workspace.
deleteDELETEprivateEndpointConnectionName, resourceGroupName, subscriptionId, workspaceNameDeletes a private endpoint connection.

SELECT examples

Lists all private endpoint connections for a workspace.

SELECT
privateEndpointConnectionName,
private_endpoint,
private_link_service_connection_state,
provisioning_state,
resourceGroupName,
subscriptionId,
system_data,
workspaceName
FROM azure_extras.healthcare.vw_workspace_private_endpoint_connections
WHERE resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}'
AND workspaceName = '{{ workspaceName }}';

INSERT example

Use the following StackQL query and manifest file to create a new workspace_private_endpoint_connections resource.

/*+ create */
INSERT INTO azure_extras.healthcare.workspace_private_endpoint_connections (
privateEndpointConnectionName,
resourceGroupName,
subscriptionId,
workspaceName,
systemData,
properties
)
SELECT
'{{ privateEndpointConnectionName }}',
'{{ resourceGroupName }}',
'{{ subscriptionId }}',
'{{ workspaceName }}',
'{{ systemData }}',
'{{ properties }}'
;

DELETE example

Deletes the specified workspace_private_endpoint_connections resource.

/*+ delete */
DELETE FROM azure_extras.healthcare.workspace_private_endpoint_connections
WHERE privateEndpointConnectionName = '{{ privateEndpointConnectionName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}'
AND workspaceName = '{{ workspaceName }}';