Skip to main content

private_endpoint_connections

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

Overview

Nameprivate_endpoint_connections
TypeResource
Idazure.aks.private_endpoint_connections

Fields

NameDatatypeDescription
idtextThe ID of the private endpoint connection.
nametextThe name of the private endpoint connection.
privateEndpointConnectionNametextfield from the properties object
private_endpointtextfield from the properties object
private_link_service_connection_statetextfield from the properties object
provisioning_statetextfield from the properties object
resourceGroupNametextfield from the properties object
resourceNametextfield from the properties object
subscriptionIdtextfield from the properties object
typetextThe resource type.

Methods

NameAccessible byRequired ParamsDescription
getSELECTprivateEndpointConnectionName, resourceGroupName, resourceName, subscriptionIdTo learn more about private clusters, see: https://docs.microsoft.com/azure/aks/private-clusters
listSELECTresourceGroupName, resourceName, subscriptionIdTo learn more about private clusters, see: https://docs.microsoft.com/azure/aks/private-clusters
deleteDELETEprivateEndpointConnectionName, resourceGroupName, resourceName, subscriptionId
updateREPLACEprivateEndpointConnectionName, resourceGroupName, resourceName, subscriptionId

SELECT examples

To learn more about private clusters, see: https://docs.microsoft.com/azure/aks/private-clusters

SELECT
id,
name,
privateEndpointConnectionName,
private_endpoint,
private_link_service_connection_state,
provisioning_state,
resourceGroupName,
resourceName,
subscriptionId,
type
FROM azure.aks.vw_private_endpoint_connections
WHERE resourceGroupName = '{{ resourceGroupName }}'
AND resourceName = '{{ resourceName }}'
AND subscriptionId = '{{ subscriptionId }}';

REPLACE example

Replaces all fields in the specified private_endpoint_connections resource.

/*+ update */
REPLACE azure.aks.private_endpoint_connections
SET
properties = '{{ properties }}'
WHERE
privateEndpointConnectionName = '{{ privateEndpointConnectionName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND resourceName = '{{ resourceName }}'
AND subscriptionId = '{{ subscriptionId }}';

DELETE example

Deletes the specified private_endpoint_connections resource.

/*+ delete */
DELETE FROM azure.aks.private_endpoint_connections
WHERE privateEndpointConnectionName = '{{ privateEndpointConnectionName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND resourceName = '{{ resourceName }}'
AND subscriptionId = '{{ subscriptionId }}';