managed_hsms_deleted
Creates, updates, deletes, gets or lists a managed_hsms_deleted
resource.
Overview
Name | managed_hsms_deleted |
Type | Resource |
Id | azure.key_vault.managed_hsms_deleted |
Fields
- vw_managed_hsms_deleted
- managed_hsms_deleted
Name | Datatype | Description |
---|---|---|
id | text | The Azure Resource Manager resource ID for the deleted managed HSM Pool. |
name | text | The name of the managed HSM Pool. |
deletion_date | text | field from the properties object |
location | text | field from the properties object |
mhsm_id | text | field from the properties object |
purge_protection_enabled | text | field from the properties object |
scheduled_purge_date | text | field from the properties object |
subscriptionId | text | field from the properties object |
tags | text | field from the properties object |
type | text | The resource type of the managed HSM Pool. |
Name | Datatype | Description |
---|---|---|
id | string | The Azure Resource Manager resource ID for the deleted managed HSM Pool. |
name | string | The name of the managed HSM Pool. |
properties | object | Properties of the deleted managed HSM. |
type | string | The resource type of the managed HSM Pool. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | location, name, subscriptionId | Gets the specified deleted managed HSM. |
list | SELECT | subscriptionId | The List operation gets information about the deleted managed HSMs associated with the subscription. |
SELECT
examples
The List operation gets information about the deleted managed HSMs associated with the subscription.
- vw_managed_hsms_deleted
- managed_hsms_deleted
SELECT
id,
name,
deletion_date,
location,
mhsm_id,
purge_protection_enabled,
scheduled_purge_date,
subscriptionId,
tags,
type
FROM azure.key_vault.vw_managed_hsms_deleted
WHERE subscriptionId = '{{ subscriptionId }}';
SELECT
id,
name,
properties,
type
FROM azure.key_vault.managed_hsms_deleted
WHERE subscriptionId = '{{ subscriptionId }}';