Skip to main content

private_endpoint_connections

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

Overview

Nameprivate_endpoint_connections
TypeResource
Idazure.key_vault.private_endpoint_connections

Fields

The following fields are returned by SELECT queries:

Private endpoint connection successfully returned.

NameDatatypeDescription
idstringFully qualified identifier of the key vault resource.
namestringName of the key vault resource.
etagstringModified whenever there is a change in the state of private endpoint connection.
locationstringAzure location of the key vault resource.
propertiesobjectResource properties.
tagsobjectTags assigned to the key vault resource.
typestringResource type of the key vault resource.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectsubscriptionId, resourceGroupName, vaultName, privateEndpointConnectionNameGets the specified private endpoint connection associated with the key vault.
list_by_resourceselectsubscriptionId, resourceGroupName, vaultNameThe List operation gets information about the private endpoint connections associated with the vault.
putreplacesubscriptionId, resourceGroupName, vaultName, privateEndpointConnectionNameUpdates the specified private endpoint connection associated with the key vault.
deletedeletesubscriptionId, resourceGroupName, vaultName, privateEndpointConnectionNameDeletes the specified private endpoint connection associated with the key vault.

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
privateEndpointConnectionNamestringName of the private endpoint connection associated with the key vault.
resourceGroupNamestringName of the resource group that contains the key vault.
subscriptionIdstringSubscription credentials which uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call.
vaultNamestringThe name of the key vault.

SELECT examples

Gets the specified private endpoint connection associated with the key vault.

SELECT
id,
name,
etag,
location,
properties,
tags,
type
FROM azure.key_vault.private_endpoint_connections
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND vaultName = '{{ vaultName }}' -- required
AND privateEndpointConnectionName = '{{ privateEndpointConnectionName }}' -- required
;

REPLACE examples

Updates the specified private endpoint connection associated with the key vault.

REPLACE azure.key_vault.private_endpoint_connections
SET
data__properties = '{{ properties }}',
data__etag = '{{ etag }}'
WHERE
subscriptionId = '{{ subscriptionId }}' --required
AND resourceGroupName = '{{ resourceGroupName }}' --required
AND vaultName = '{{ vaultName }}' --required
AND privateEndpointConnectionName = '{{ privateEndpointConnectionName }}' --required
RETURNING
id,
name,
etag,
location,
properties,
tags,
type;

DELETE examples

Deletes the specified private endpoint connection associated with the key vault.

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