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
The following fields are returned by SELECT
queries:
- get
- list
Retrieved information about the specified deleted managed HSM.
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. |
Retrieved information about all managed HSMs in the specified subscription.
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
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
get | select | name , location , subscriptionId | Gets the specified deleted managed HSM. | |
list | select | subscriptionId | The 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.
Name | Datatype | Description |
---|---|---|
location | string | The location of the deleted managed HSM. |
name | string | The name of the deleted managed HSM. |
subscriptionId | string | Subscription credentials which uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call. |
SELECT
examples
- get
- list
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
;
The List operation gets information about the deleted managed HSMs associated with the subscription.
SELECT
id,
name,
properties,
type
FROM azure.key_vault.managed_hsms_deleted
WHERE subscriptionId = '{{ subscriptionId }}' -- required
;