private_link_resources
Creates, updates, deletes, gets or lists a private_link_resources
resource.
Overview
Name | private_link_resources |
Type | Resource |
Id | azure.hdinsight.private_link_resources |
Fields
- vw_private_link_resources
- private_link_resources
Name | Datatype | Description |
---|---|---|
id | text | Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName} |
name | text | The name of the resource |
clusterName | text | field from the properties object |
group_id | text | field from the properties object |
privateLinkResourceName | text | field from the properties object |
required_members | text | field from the properties object |
required_zone_names | text | field from the properties object |
resourceGroupName | text | field from the properties object |
subscriptionId | text | field from the properties object |
type | text | The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts" |
Name | Datatype | Description |
---|---|---|
id | string | Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName} |
name | string | The name of the resource |
properties | object | Properties of a private link resource. |
type | string | The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts" |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | clusterName, privateLinkResourceName, resourceGroupName, subscriptionId | Gets the specific private link resource. |
list_by_cluster | SELECT | clusterName, resourceGroupName, subscriptionId | Lists the private link resources in a HDInsight cluster. |
SELECT
examples
Lists the private link resources in a HDInsight cluster.
- vw_private_link_resources
- private_link_resources
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 }}';
SELECT
id,
name,
properties,
type
FROM azure.hdinsight.private_link_resources
WHERE clusterName = '{{ clusterName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';