Skip to main content

private_link_resources

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

Overview

Nameprivate_link_resources
TypeResource
Idazure.hdinsight.private_link_resources

Fields

NameDatatypeDescription
idtextFully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
nametextThe name of the resource
clusterNametextfield from the properties object
group_idtextfield from the properties object
privateLinkResourceNametextfield from the properties object
required_memberstextfield from the properties object
required_zone_namestextfield from the properties object
resourceGroupNametextfield from the properties object
subscriptionIdtextfield from the properties object
typetextThe type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"

Methods

NameAccessible byRequired ParamsDescription
getSELECTclusterName, privateLinkResourceName, resourceGroupName, subscriptionIdGets the specific private link resource.
list_by_clusterSELECTclusterName, resourceGroupName, subscriptionIdLists the private link resources in a HDInsight cluster.

SELECT examples

Lists the private link resources in a HDInsight cluster.

SELECT
id,
name,
clusterName,
group_id,
privateLinkResourceName,
required_members,
required_zone_names,
resourceGroupName,
subscriptionId,
type
FROM azure.hdinsight.vw_private_link_resources
WHERE clusterName = '{{ clusterName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';