Skip to main content

private_link_resources

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

Overview

Nameprivate_link_resources
TypeResource
Idazure.digital_twins.private_link_resources

Fields

NameDatatypeDescription
idtextThe resource identifier.
nametextThe resource name.
group_idtextfield from the properties object
required_memberstextfield from the properties object
required_zone_namestextfield from the properties object
resourceGroupNametextfield from the properties object
resourceIdtextfield from the properties object
resourceNametextfield from the properties object
subscriptionIdtextfield from the properties object
typetextThe resource type.

Methods

NameAccessible byRequired ParamsDescription
getSELECTresourceGroupName, resourceId, resourceName, subscriptionIdGet the specified private link resource for the given Digital Twin.
listSELECTresourceGroupName, resourceName, subscriptionIdList private link resources for given Digital Twin.

SELECT examples

List private link resources for given Digital Twin.

SELECT
id,
name,
group_id,
required_members,
required_zone_names,
resourceGroupName,
resourceId,
resourceName,
subscriptionId,
type
FROM azure.digital_twins.vw_private_link_resources
WHERE resourceGroupName = '{{ resourceGroupName }}'
AND resourceName = '{{ resourceName }}'
AND subscriptionId = '{{ subscriptionId }}';