Skip to main content

private_endpoint_connections

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

Overview

Nameprivate_endpoint_connections
TypeResource
Idazure.hardware_security_modules.private_endpoint_connections

Fields

NameDatatypeDescription
idstringFully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}"
namestringThe name of the resource
propertiesobjectProperties of the private endpoint connection.
systemDataobjectMetadata pertaining to creation and last modification of the resource.
typestringThe type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"

Methods

NameAccessible byRequired ParamsDescription
list_by_cloud_hsm_clusterSELECTcloudHsmClusterName, resourceGroupName, subscriptionIdThe List operation gets information about the private endpoint connections associated with the Cloud HSM Cluster

SELECT examples

The List operation gets information about the private endpoint connections associated with the Cloud HSM Cluster

SELECT
id,
name,
properties,
systemData,
type
FROM azure.hardware_security_modules.private_endpoint_connections
WHERE cloudHsmClusterName = '{{ cloudHsmClusterName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';