private_link_resources
Creates, updates, deletes, gets or lists a private_link_resources
resource.
Overview
Name | private_link_resources |
Type | Resource |
Id | azure.aks.private_link_resources |
Fields
The following fields are returned by SELECT
queries:
- list
Name | Datatype | Description |
---|---|---|
id | string | The ID of the private link resource. |
name | string | The name of the private link resource. |
groupId | string | The group ID of the resource. |
privateLinkServiceID | string (arm-id) | The private link service ID of the resource, this field is exposed only to NRP internally. |
requiredMembers | array | The RequiredMembers of the resource |
type | string | The resource type. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
list | select | subscriptionId , resourceGroupName , resourceName | 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.
Name | Datatype | Description |
---|---|---|
resourceGroupName | string | The name of the resource group. The name is case insensitive. |
resourceName | string | The name of the managed cluster resource. |
subscriptionId | string (uuid) | The ID of the target subscription. The value must be an UUID. |
SELECT
examples
- list
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
;