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.
locationstringGets or sets the location of the resource.
propertiesobjectGets or sets the automation account properties.
typestringThe resource type.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_by_subscriptionselectsubscriptionIdRetrieve 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
subscriptionIdstringGets subscription credentials which uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call.

SELECT examples

Retrieve deleted automation account.

SELECT
id,
name,
location,
properties,
type
FROM azure.automation.deleted_automation_accounts
WHERE subscriptionId = '{{ subscriptionId }}' -- required
;