private_link_resources
Creates, updates, deletes, gets or lists a private_link_resources
resource.
Overview
Name | private_link_resources |
Type | Resource |
Id | azure.desktop_virtualization.private_link_resources |
Fields
Name | Datatype | Description |
---|---|---|
id | string | Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}" |
name | string | The name of the resource |
properties | object | Properties of a private link resource. |
systemData | object | Metadata pertaining to creation and last modification of the resource. |
type | string | The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts" |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
list_by_host_pool | SELECT | hostPoolName, resourceGroupName, subscriptionId | List the private link resources available for this hostpool. |
list_by_workspace | SELECT | resourceGroupName, subscriptionId, workspaceName | List the private link resources available for this workspace. |
SELECT
examples
List the private link resources available for this hostpool.
SELECT
id,
name,
properties,
systemData,
type
FROM azure.desktop_virtualization.private_link_resources
WHERE hostPoolName = '{{ hostPoolName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';