deleted_accounts
Creates, updates, deletes, gets or lists a deleted_accounts
resource.
Overview
Name | deleted_accounts |
Type | Resource |
Id | azure.storage.deleted_accounts |
Fields
- vw_deleted_accounts
- deleted_accounts
Name | Datatype | Description |
---|---|---|
creation_time | text | field from the properties object |
deletedAccountName | text | field from the properties object |
deletion_time | text | field from the properties object |
location | text | field from the properties object |
restore_reference | text | field from the properties object |
storage_account_resource_id | text | field from the properties object |
subscriptionId | text | field from the properties object |
Name | Datatype | Description |
---|---|---|
properties | object | Attributes of a deleted storage account. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | deletedAccountName, location, subscriptionId | Get properties of specified deleted account resource. |
list | SELECT | subscriptionId | Lists deleted accounts under the subscription. |
SELECT
examples
Lists deleted accounts under the subscription.
- vw_deleted_accounts
- deleted_accounts
SELECT
creation_time,
deletedAccountName,
deletion_time,
location,
restore_reference,
storage_account_resource_id,
subscriptionId
FROM azure.storage.vw_deleted_accounts
WHERE subscriptionId = '{{ subscriptionId }}';
SELECT
properties
FROM azure.storage.deleted_accounts
WHERE subscriptionId = '{{ subscriptionId }}';