Skip to main content

private_endpoint_connections

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

Overview

Nameprivate_endpoint_connections
TypeResource
Idazure.app_configuration.private_endpoint_connections

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.
propertiesobjectThe properties of a private endpoint.
typestringThe type of the resource.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectsubscriptionId, resourceGroupName, configStoreName, privateEndpointConnectionNameGets the specified private endpoint connection associated with the configuration store.
list_by_configuration_storeselectsubscriptionId, resourceGroupName, configStoreNameLists all private endpoint connections for a configuration store.
create_or_updateinsertsubscriptionId, resourceGroupName, configStoreName, privateEndpointConnectionNameUpdate the state of the specified private endpoint connection associated with the configuration store. This operation cannot be used to create a private endpoint connection. Private endpoint connections must be created with the Network resource provider.
deletedeletesubscriptionId, resourceGroupName, configStoreName, privateEndpointConnectionNameDeletes a private endpoint connection.

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.
privateEndpointConnectionNamestringPrivate endpoint connection name
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 the specified private endpoint connection associated with the configuration store.

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

INSERT examples

Update the state of the specified private endpoint connection associated with the configuration store. This operation cannot be used to create a private endpoint connection. Private endpoint connections must be created with the Network resource provider.

INSERT INTO azure.app_configuration.private_endpoint_connections (
data__properties,
subscriptionId,
resourceGroupName,
configStoreName,
privateEndpointConnectionName
)
SELECT
'{{ properties }}',
'{{ subscriptionId }}',
'{{ resourceGroupName }}',
'{{ configStoreName }}',
'{{ privateEndpointConnectionName }}'
RETURNING
id,
name,
properties,
type
;

DELETE examples

Deletes a private endpoint connection.

DELETE FROM azure.app_configuration.private_endpoint_connections
WHERE subscriptionId = '{{ subscriptionId }}' --required
AND resourceGroupName = '{{ resourceGroupName }}' --required
AND configStoreName = '{{ configStoreName }}' --required
AND privateEndpointConnectionName = '{{ privateEndpointConnectionName }}' --required
;