private_endpoint_connections
Creates, updates, deletes, gets or lists a private_endpoint_connections
resource.
Overview
Name | private_endpoint_connections |
Type | Resource |
Id | azure.hardware_security_modules.private_endpoint_connections |
Fields
The following fields are returned by SELECT
queries:
- list_by_cloud_hsm_cluster
List of all CloudHsmCluster private endpoint connections associated with the Cloud HSM Cluster.
Name | Datatype | Description |
---|---|---|
etag | string | Modified whenever there is a change in the state of private endpoint connection. |
properties | object | Resource properties. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
list_by_cloud_hsm_cluster | select | subscriptionId , resourceGroupName , cloudHsmClusterName | The 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.
Name | Datatype | Description |
---|---|---|
cloudHsmClusterName | string | The name of the Cloud HSM Cluster within the specified resource group. Cloud HSM Cluster names must be between 3 and 23 characters in length. |
resourceGroupName | string | The name of the resource group. The name is case insensitive. |
subscriptionId | string (uuid) | The ID of the target subscription. The value must be an UUID. |
SELECT
examples
- list_by_cloud_hsm_cluster
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
;