Skip to main content

mhsm_private_link_resources

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

Overview

Namemhsm_private_link_resources
TypeResource
Idazure.key_vault.mhsm_private_link_resources

Fields

The following fields are returned by SELECT queries:

Successfully retrieved private link resources.

NameDatatypeDescription
idstringThe Azure Resource Manager resource ID for the managed HSM Pool.
namestringThe name of the managed HSM Pool.
identityobjectManaged service identity (system assigned and/or user assigned identities)
locationstringThe supported Azure location where the managed HSM Pool should be created.
propertiesobjectResource properties.
skuobjectSKU details
systemDataobjectMetadata pertaining to creation and last modification of the key vault resource.
tagsobjectResource tags
typestringThe resource type of the managed HSM Pool.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_by_mhsm_resourceselectsubscriptionId, resourceGroupName, nameGets the private link resources supported for the managed hsm pool.

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
namestringName of the managed HSM Pool
resourceGroupNamestringName of the resource group that contains the managed HSM pool.
subscriptionIdstringSubscription credentials which uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call.

SELECT examples

Gets the private link resources supported for the managed hsm pool.

SELECT
id,
name,
identity,
location,
properties,
sku,
systemData,
tags,
type
FROM azure.key_vault.mhsm_private_link_resources
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND name = '{{ name }}' -- required
;