workspace_private_link_resources
Creates, updates, deletes, gets or lists a workspace_private_link_resources resource.
Overview
| Name | workspace_private_link_resources |
| Type | Resource |
| Id | azure_extras.healthcare.workspace_private_link_resources |
Fields
The following fields are returned by SELECT queries:
- get
- list_by_workspace
The request was successful; the request was well-formed and received properly.
| Name | Datatype | Description |
|---|---|---|
properties | object | Resource properties. |
systemData | object | Metadata pertaining to creation and last modification of the resource. |
The request was successful; the request was well-formed and received properly.
| Name | Datatype | Description |
|---|---|---|
properties | object | Resource properties. |
systemData | object | Metadata pertaining to creation and last modification of the resource. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get | select | subscriptionId, resourceGroupName, workspaceName, groupName | Gets a private link resource that need to be created for a workspace. | |
list_by_workspace | select | subscriptionId, resourceGroupName, workspaceName | Gets 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.
| Name | Datatype | Description |
|---|---|---|
groupName | string | The name of the private link resource group. |
resourceGroupName | string | The name of the resource group that contains the service instance. |
subscriptionId | string | The ID of the target subscription. |
workspaceName | string | The name of workspace resource. |
SELECT examples
- get
- list_by_workspace
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
;
Gets the private link resources 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
;