private_link_resources
Creates, updates, deletes, gets or lists a private_link_resources
resource.
Overview
Name | private_link_resources |
Type | Resource |
Id | azure.app_configuration.private_link_resources |
Fields
- vw_private_link_resources
- private_link_resources
Name | Datatype | Description |
---|---|---|
id | text | The resource ID. |
name | text | The name of the resource. |
configStoreName | text | field from the properties object |
groupName | text | field from the properties object |
group_id | 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 type of the resource. |
Name | Datatype | Description |
---|---|---|
id | string | The resource ID. |
name | string | The name of the resource. |
properties | object | Properties of a private link resource. |
type | string | The type of the resource. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | configStoreName, groupName, resourceGroupName, subscriptionId | Gets a private link resource that need to be created for a configuration store. |
list_by_configuration_store | SELECT | configStoreName, resourceGroupName, subscriptionId | Gets the private link resources that need to be created for a configuration store. |
SELECT
examples
Gets the private link resources that need to be created for a configuration store.
- vw_private_link_resources
- private_link_resources
SELECT
id,
name,
configStoreName,
groupName,
group_id,
required_members,
required_zone_names,
resourceGroupName,
subscriptionId,
type
FROM azure.app_configuration.vw_private_link_resources
WHERE configStoreName = '{{ configStoreName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';
SELECT
id,
name,
properties,
type
FROM azure.app_configuration.private_link_resources
WHERE configStoreName = '{{ configStoreName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';