private_link_resources
Creates, updates, deletes, gets or lists a private_link_resources resource.
Overview
| Name | private_link_resources |
| Type | Resource |
| Id | azure.machine_learning_services.private_link_resources |
Fields
The following fields are returned by SELECT queries:
- list_by_workspace
| Name | Datatype | Description |
|---|---|---|
id | string | Specifies the resource ID. |
name | string | Specifies the name of the resource. |
groupId | string | The private link resource group id. |
identity | object | The identity of the resource. |
location | string | Specifies the location of the resource. |
requiredMembers | array | The private link resource required member names. |
requiredZoneNames | array | The private link resource Private link DNS zone name. |
sku | object | The sku of the workspace. |
tags | object | Contains resource tags defined as key/value pairs. |
type | string | Specifies the type of the resource. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_by_workspace | select | resource_group_name, workspace_name, subscription_id | 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 |
|---|---|---|
resource_group_name | string | Name of the resource group in which workspace is located. Required. |
subscription_id | string | |
workspace_name | string | Name of Azure Machine Learning workspace. Required. |
SELECT examples
- list_by_workspace
Gets the private link resources that need to be created for a workspace.
SELECT
id,
name,
groupId,
identity,
location,
requiredMembers,
requiredZoneNames,
sku,
tags,
type
FROM azure.machine_learning_services.private_link_resources
WHERE resource_group_name = '{{ resource_group_name }}' -- required
AND workspace_name = '{{ workspace_name }}' -- required
AND subscription_id = '{{ subscription_id }}' -- required
;