Skip to main content

workspace_private_link_resources

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

Overview

Nameworkspace_private_link_resources
TypeResource
Idazure_extras.healthcare.workspace_private_link_resources

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, groupNameGets a private link resource that need to be created for a workspace.
list_by_workspaceselectsubscriptionId, resourceGroupName, workspaceNameGets the private link resources that need to be created for a workspace.

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
groupNamestringThe name of the private link resource group.
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 a private link resource that need to be created for a workspace.

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