Skip to main content

registries_private_link_resources

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

Overview

Nameregistries_private_link_resources
TypeResource
Idazure.container_registry.registries_private_link_resources

Fields

NameDatatypeDescription
idtextThe resource ID.
nametextThe name of the resource.
groupNametextfield from the properties object
group_idtextfield from the properties object
registryNametextfield 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 resource type is private link resource.

Methods

NameAccessible byRequired ParamsDescription
getSELECTgroupName, registryName, resourceGroupName, subscriptionIdGets a private link resource by a specified group name for a container registry.
listSELECTregistryName, resourceGroupName, subscriptionIdLists the private link resources for a container registry.

SELECT examples

Lists the private link resources for a container registry.

SELECT
id,
name,
groupName,
group_id,
registryName,
required_members,
required_zone_names,
resourceGroupName,
subscriptionId,
type
FROM azure.container_registry.vw_registries_private_link_resources
WHERE registryName = '{{ registryName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';