mhsm_private_endpoint_connections
Creates, updates, deletes, gets or lists a mhsm_private_endpoint_connections
resource.
Overview
Name | mhsm_private_endpoint_connections |
Type | Resource |
Id | azure.key_vault.mhsm_private_endpoint_connections |
Fields
- vw_mhsm_private_endpoint_connections
- mhsm_private_endpoint_connections
Name | Datatype | Description |
---|---|---|
id | text | The Azure Resource Manager resource ID for the managed HSM Pool. |
name | text | The name of the managed HSM Pool. |
etag | text | Modified whenever there is a change in the state of private endpoint connection. |
identity | text | Managed service identity (system assigned and/or user assigned identities) |
location | text | The supported Azure location where the managed HSM Pool should be created. |
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 |
sku | text | SKU details |
subscriptionId | text | field from the properties object |
system_data | text | field from the properties object |
tags | text | Resource tags |
type | text | The resource type of the managed HSM Pool. |
Name | Datatype | Description |
---|---|---|
id | string | The Azure Resource Manager resource ID for the managed HSM Pool. |
name | string | The name of the managed HSM Pool. |
etag | string | Modified whenever there is a change in the state of private endpoint connection. |
identity | object | Managed service identity (system assigned and/or user assigned identities) |
location | string | The supported Azure location where the managed HSM Pool should be created. |
properties | object | Properties of the private endpoint connection resource. |
sku | object | SKU details |
systemData | object | Metadata pertaining to creation and last modification of the key vault resource. |
tags | object | Resource tags |
type | string | The resource type of the managed HSM Pool. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | name, privateEndpointConnectionName, resourceGroupName, subscriptionId | Gets the specified private endpoint connection associated with the managed HSM Pool. |
list_by_resource | SELECT | name, resourceGroupName, subscriptionId | The List operation gets information about the private endpoint connections associated with the managed HSM Pool. |
delete | DELETE | name, privateEndpointConnectionName, resourceGroupName, subscriptionId | Deletes the specified private endpoint connection associated with the managed hsm pool. |
put | REPLACE | name, privateEndpointConnectionName, resourceGroupName, subscriptionId | Updates the specified private endpoint connection associated with the managed hsm pool. |
SELECT
examples
The List operation gets information about the private endpoint connections associated with the managed HSM Pool.
- vw_mhsm_private_endpoint_connections
- mhsm_private_endpoint_connections
SELECT
id,
name,
etag,
identity,
location,
privateEndpointConnectionName,
private_endpoint,
private_link_service_connection_state,
provisioning_state,
resourceGroupName,
sku,
subscriptionId,
system_data,
tags,
type
FROM azure.key_vault.vw_mhsm_private_endpoint_connections
WHERE name = '{{ name }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';
SELECT
id,
name,
etag,
identity,
location,
properties,
sku,
systemData,
tags,
type
FROM azure.key_vault.mhsm_private_endpoint_connections
WHERE name = '{{ name }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';
REPLACE
example
Replaces all fields in the specified mhsm_private_endpoint_connections
resource.
/*+ update */
REPLACE azure.key_vault.mhsm_private_endpoint_connections
SET
properties = '{{ properties }}',
etag = '{{ etag }}',
location = '{{ location }}',
sku = '{{ sku }}',
tags = '{{ tags }}',
systemData = '{{ systemData }}',
identity = '{{ identity }}'
WHERE
name = '{{ name }}'
AND privateEndpointConnectionName = '{{ privateEndpointConnectionName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';
DELETE
example
Deletes the specified mhsm_private_endpoint_connections
resource.
/*+ delete */
DELETE FROM azure.key_vault.mhsm_private_endpoint_connections
WHERE name = '{{ name }}'
AND privateEndpointConnectionName = '{{ privateEndpointConnectionName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';