Skip to main content

private_link_resources

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

Overview

Nameprivate_link_resources
TypeResource
Idazure.machine_learning_services.private_link_resources

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstringSpecifies the resource ID.
namestringSpecifies the name of the resource.
groupIdstringThe private link resource group id.
identityobjectThe identity of the resource.
locationstringSpecifies the location of the resource.
requiredMembersarrayThe private link resource required member names.
requiredZoneNamesarrayThe private link resource Private link DNS zone name.
skuobjectThe sku of the workspace.
tagsobjectContains resource tags defined as key/value pairs.
typestringSpecifies the type of the resource.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_by_workspaceselectresource_group_name, workspace_name, subscription_idGets 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
resource_group_namestringName of the resource group in which workspace is located. Required.
subscription_idstring
workspace_namestringName of Azure Machine Learning workspace. Required.

SELECT examples

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
;