Skip to main content

deleted_accounts

Creates, updates, deletes, gets or lists a deleted_accounts resource.

Overview

Namedeleted_accounts
TypeResource
Idazure.storage.deleted_accounts

Fields

The following fields are returned by SELECT queries:

OK -- properties retrieved and returned successfully for the deleted account.

NameDatatypeDescription
propertiesobjectProperties of the deleted account.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectdeletedAccountName, location, subscriptionIdGet properties of specified deleted account resource.
listselectsubscriptionIdLists deleted accounts under 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.

NameDatatypeDescription
deletedAccountNamestringName of the deleted storage account.
locationstringThe location of the deleted storage account.
subscriptionIdstring (uuid)The ID of the target subscription. The value must be an UUID.

SELECT examples

Get properties of specified deleted account resource.

SELECT
properties
FROM azure.storage.deleted_accounts
WHERE deletedAccountName = '{{ deletedAccountName }}' -- required
AND location = '{{ location }}' -- required
AND subscriptionId = '{{ subscriptionId }}' -- required
;