registries_private_link_resources
Creates, updates, deletes, gets or lists a registries_private_link_resources
resource.
Overview
Name | registries_private_link_resources |
Type | Resource |
Id | azure.container_registry.registries_private_link_resources |
Fields
- vw_registries_private_link_resources
- registries_private_link_resources
Name | Datatype | Description |
---|---|---|
id | text | The resource ID. |
name | text | The name of the resource. |
groupName | text | field from the properties object |
group_id | text | field from the properties object |
registryName | 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 resource type is private link resource. |
Name | Datatype | Description |
---|---|---|
id | string | The resource ID. |
name | string | The name of the resource. |
properties | object | The properties of a private link resource. |
type | string | The resource type is private link resource. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | groupName, registryName, resourceGroupName, subscriptionId | Gets a private link resource by a specified group name for a container registry. |
list | SELECT | registryName, resourceGroupName, subscriptionId | Lists the private link resources for a container registry. |
SELECT
examples
Lists the private link resources for a container registry.
- vw_registries_private_link_resources
- registries_private_link_resources
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 }}';
SELECT
id,
name,
properties,
type
FROM azure.container_registry.registries_private_link_resources
WHERE registryName = '{{ registryName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';