vaults_deleted
Creates, updates, deletes, gets or lists a vaults_deleted resource.
Overview
| Name | vaults_deleted |
| Type | Resource |
| Id | azure.key_vault.vaults_deleted |
Fields
The following fields are returned by SELECT queries:
- get
- list
Retrieved information about the deleted vault.
| Name | Datatype | Description |
|---|---|---|
id | string | The resource ID for the deleted key vault. |
name | string | The name of the key vault. |
properties | object | Properties of the vault |
type | string | The resource type of the key vault. |
Retrieved information about all deleted key vaults in a subscription.
| Name | Datatype | Description |
|---|---|---|
id | string | The resource ID for the deleted key vault. |
name | string | The name of the key vault. |
properties | object | Properties of the vault |
type | string | The resource type of the key vault. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get | select | vaultName, location, subscriptionId | Gets the deleted Azure key vault. | |
list | select | subscriptionId | Gets information about the deleted vaults in a 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 vault. |
subscriptionId | string | Subscription credentials which uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call. |
vaultName | string | The name of the vault. |
SELECT examples
- get
- list
Gets the deleted Azure key vault.
SELECT
id,
name,
properties,
type
FROM azure.key_vault.vaults_deleted
WHERE vaultName = '{{ vaultName }}' -- required
AND location = '{{ location }}' -- required
AND subscriptionId = '{{ subscriptionId }}' -- required
;
Gets information about the deleted vaults in a subscription.
SELECT
id,
name,
properties,
type
FROM azure.key_vault.vaults_deleted
WHERE subscriptionId = '{{ subscriptionId }}' -- required
;