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

The following fields are returned by SELECT queries:

List of all CloudHsmCluster private endpoint connections associated with the Cloud HSM Cluster.

NameDatatypeDescription
etagstringModified whenever there is a change in the state of private endpoint connection.
propertiesobjectResource properties.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_by_cloud_hsm_clusterselectsubscriptionId, resourceGroupName, cloudHsmClusterNameThe List operation gets information about the private endpoint connections associated with the Cloud HSM Cluster

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
cloudHsmClusterNamestringThe name of the Cloud HSM Cluster within the specified resource group. Cloud HSM Cluster names must be between 3 and 23 characters in length.
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

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

SELECT
etag,
properties
FROM azure.hardware_security_modules.private_endpoint_connections
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND cloudHsmClusterName = '{{ cloudHsmClusterName }}' -- required
;