Skip to main content

deleted_automation_accounts

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

Overview

Namedeleted_automation_accounts
TypeResource
Idazure.automation.deleted_automation_accounts

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstringThe resource id.
namestringGets or sets name of the resource.
automationAccountIdstringGets or sets the Automation Account Id.
automationAccountResourceIdstringGets or sets the Automation Account Resource Id.
deletionTimestring (date-time)Gets the deletion time.
locationstringGets or sets the location of the resource.
typestringThe resource type.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_by_subscriptionselectsubscription_idRetrieve deleted automation account.

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
subscription_idstring

SELECT examples

Retrieve deleted automation account.

SELECT
id,
name,
automationAccountId,
automationAccountResourceId,
deletionTime,
location,
type
FROM azure.automation.deleted_automation_accounts
WHERE subscription_id = '{{ subscription_id }}' -- required
;