Skip to main content

private_link_resources

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

Overview

Nameprivate_link_resources
TypeResource
Idazure.container_service.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. See naming rules _ for more details.
groupIdstringThe group ID of the resource.
privateLinkServiceIDstringThe 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
listselectresource_group_name, resource_name, subscription_idGets a list of private link resources in the specified managed cluster. To 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
resource_group_namestringThe name of the resource group. The name is case insensitive. Required.
resource_namestringThe name of the managed cluster resource. Required.
subscription_idstring

SELECT examples

Gets a list of private link resources in the specified managed cluster. To learn more about private clusters, see: https://docs.microsoft.com/azure/aks/private-clusters _.

SELECT
id,
name,
groupId,
privateLinkServiceID,
requiredMembers,
type
FROM azure.container_service.private_link_resources
WHERE resource_group_name = '{{ resource_group_name }}' -- required
AND resource_name = '{{ resource_name }}' -- required
AND subscription_id = '{{ subscription_id }}' -- required
;