private_endpoint_connections
Creates, updates, deletes, gets or lists a private_endpoint_connections
resource.
Overview
Name | private_endpoint_connections |
Type | Resource |
Id | azure.key_vault.private_endpoint_connections |
Fields
- vw_private_endpoint_connections
- private_endpoint_connections
Name | Datatype | Description |
---|---|---|
id | text | Fully qualified identifier of the key vault resource. |
name | text | Name of the key vault resource. |
etag | text | Modified whenever there is a change in the state of private endpoint connection. |
location | text | Azure location of the key vault resource. |
privateEndpointConnectionName | text | field from the properties object |
private_endpoint | text | field from the properties object |
private_link_service_connection_state | text | field from the properties object |
provisioning_state | text | field from the properties object |
resourceGroupName | text | field from the properties object |
subscriptionId | text | field from the properties object |
tags | text | Tags assigned to the key vault resource. |
type | text | Resource type of the key vault resource. |
vaultName | text | field from the properties object |
Name | Datatype | Description |
---|---|---|
id | string | Fully qualified identifier of the key vault resource. |
name | string | Name of the key vault resource. |
etag | string | Modified whenever there is a change in the state of private endpoint connection. |
location | string | Azure location of the key vault resource. |
properties | object | Properties of the private endpoint connection resource. |
tags | object | Tags assigned to the key vault resource. |
type | string | Resource type of the key vault resource. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | privateEndpointConnectionName, resourceGroupName, subscriptionId, vaultName | Gets the specified private endpoint connection associated with the key vault. |
list_by_resource | SELECT | resourceGroupName, subscriptionId, vaultName | The List operation gets information about the private endpoint connections associated with the vault. |
delete | DELETE | privateEndpointConnectionName, resourceGroupName, subscriptionId, vaultName | Deletes the specified private endpoint connection associated with the key vault. |
put | REPLACE | privateEndpointConnectionName, resourceGroupName, subscriptionId, vaultName | Updates the specified private endpoint connection associated with the key vault. |
SELECT
examples
The List operation gets information about the private endpoint connections associated with the vault.
- vw_private_endpoint_connections
- private_endpoint_connections
SELECT
id,
name,
etag,
location,
privateEndpointConnectionName,
private_endpoint,
private_link_service_connection_state,
provisioning_state,
resourceGroupName,
subscriptionId,
tags,
type,
vaultName
FROM azure.key_vault.vw_private_endpoint_connections
WHERE resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}'
AND vaultName = '{{ vaultName }}';
SELECT
id,
name,
etag,
location,
properties,
tags,
type
FROM azure.key_vault.private_endpoint_connections
WHERE resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}'
AND vaultName = '{{ vaultName }}';
REPLACE
example
Replaces all fields in the specified private_endpoint_connections
resource.
/*+ update */
REPLACE azure.key_vault.private_endpoint_connections
SET
properties = '{{ properties }}',
etag = '{{ etag }}'
WHERE
privateEndpointConnectionName = '{{ privateEndpointConnectionName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}'
AND vaultName = '{{ vaultName }}';
DELETE
example
Deletes the specified private_endpoint_connections
resource.
/*+ delete */
DELETE FROM azure.key_vault.private_endpoint_connections
WHERE privateEndpointConnectionName = '{{ privateEndpointConnectionName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}'
AND vaultName = '{{ vaultName }}';