Skip to main content

managed_hsms_deleted

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

Overview

Namemanaged_hsms_deleted
TypeResource
Idazure.key_vault.managed_hsms_deleted

Fields

The following fields are returned by SELECT queries:

Retrieved information about the specified deleted managed HSM.

NameDatatypeDescription
idstringThe Azure Resource Manager resource ID for the deleted managed HSM Pool.
namestringThe name of the managed HSM Pool.
propertiesobjectProperties of the deleted managed HSM
typestringThe resource type of the managed HSM Pool.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectname, location, subscriptionIdGets the specified deleted managed HSM.
listselectsubscriptionIdThe List operation gets information about the deleted managed HSMs associated with the subscription.

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
locationstringThe location of the deleted managed HSM.
namestringThe name of the deleted managed HSM.
subscriptionIdstringSubscription credentials which uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call.

SELECT examples

Gets the specified deleted managed HSM.

SELECT
id,
name,
properties,
type
FROM azure.key_vault.managed_hsms_deleted
WHERE name = '{{ name }}' -- required
AND location = '{{ location }}' -- required
AND subscriptionId = '{{ subscriptionId }}' -- required
;