deleted_automation_accounts
Creates, updates, deletes, gets or lists a deleted_automation_accounts
resource.
Overview
Name | deleted_automation_accounts |
Type | Resource |
Id | azure.automation.deleted_automation_accounts |
Fields
The following fields are returned by SELECT
queries:
- list_by_subscription
Name | Datatype | Description |
---|---|---|
id | string | The resource id. |
name | string | Gets or sets name of the resource. |
location | string | Gets or sets the location of the resource. |
properties | object | Gets or sets the automation account properties. |
type | string | The resource type. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
list_by_subscription | select | subscriptionId | Retrieve 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.
Name | Datatype | Description |
---|---|---|
subscriptionId | string | Gets subscription credentials which uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call. |
SELECT
examples
- list_by_subscription
Retrieve deleted automation account.
SELECT
id,
name,
location,
properties,
type
FROM azure.automation.deleted_automation_accounts
WHERE subscriptionId = '{{ subscriptionId }}' -- required
;