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
- vw_vaults_deleted
- vaults_deleted
Name | Datatype | Description |
---|---|---|
id | text | The resource ID for the deleted key vault. |
name | text | The name of the key vault. |
deletion_date | text | field from the properties object |
location | 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 key vault. |
vaultName | text | field from the properties object |
vault_id | text | field from the properties object |
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 deleted vault. |
type | string | The resource type of the key vault. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | location, subscriptionId, vaultName | Gets the deleted Azure key vault. |
list | SELECT | subscriptionId | Gets information about the deleted vaults in a subscription. |
SELECT
examples
Gets information about the deleted vaults in a subscription.
- vw_vaults_deleted
- vaults_deleted
SELECT
id,
name,
deletion_date,
location,
purge_protection_enabled,
scheduled_purge_date,
subscriptionId,
tags,
type,
vaultName,
vault_id
FROM azure.key_vault.vw_vaults_deleted
WHERE subscriptionId = '{{ subscriptionId }}';
SELECT
id,
name,
properties,
type
FROM azure.key_vault.vaults_deleted
WHERE subscriptionId = '{{ subscriptionId }}';