Skip to main content

private_link_resources

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

Overview

Nameprivate_link_resources
TypeResource
Idazure.app_configuration.private_link_resources

Fields

The following fields are returned by SELECT queries:

The request was successful; the request was well-formed and received properly.

NameDatatypeDescription
idstringThe resource ID.
namestringThe name of the resource.
propertiesobjectPrivate link resource properties.
typestringThe type of the resource.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectsubscriptionId, resourceGroupName, configStoreName, groupNameGets a private link resource that need to be created for a configuration store.
list_by_configuration_storeselectsubscriptionId, resourceGroupName, configStoreNameGets the private link resources that need to be created for a configuration store.

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
configStoreNamestringThe name of the configuration store.
groupNamestringThe name of the private link resource group.
resourceGroupNamestringThe name of the resource group. The name is case insensitive.
subscriptionIdstring (uuid)The ID of the target subscription. The value must be an UUID.

SELECT examples

Gets a private link resource that need to be created for a configuration store.

SELECT
id,
name,
properties,
type
FROM azure.app_configuration.private_link_resources
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND configStoreName = '{{ configStoreName }}' -- required
AND groupName = '{{ groupName }}' -- required
;