Skip to main content

private_link_resources

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

Overview

Nameprivate_link_resources
TypeResource
Idazure.aks.private_link_resources

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstringThe ID of the private link resource.
namestringThe name of the private link resource.
groupIdstringThe group ID of the resource.
privateLinkServiceIDstring (arm-id)The private link service ID of the resource, this field is exposed only to NRP internally.
requiredMembersarrayThe RequiredMembers of the resource
typestringThe resource type.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectsubscriptionId, resourceGroupName, resourceNameTo learn more about private clusters, see: https://docs.microsoft.com/azure/aks/private-clusters

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
resourceGroupNamestringThe name of the resource group. The name is case insensitive.
resourceNamestringThe name of the managed cluster resource.
subscriptionIdstring (uuid)The ID of the target subscription. The value must be an UUID.

SELECT examples

To learn more about private clusters, see: https://docs.microsoft.com/azure/aks/private-clusters

SELECT
id,
name,
groupId,
privateLinkServiceID,
requiredMembers,
type
FROM azure.aks.private_link_resources
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND resourceName = '{{ resourceName }}' -- required
;