action_plan_operation_attempts
Creates, updates, deletes, gets or lists an action_plan_operation_attempts
resource.
Overview
Name | action_plan_operation_attempts |
Type | Resource |
Id | azure_stack.deployment_admin.action_plan_operation_attempts |
Fields
The following fields are returned by SELECT
queries:
- list
Name | Datatype | Description |
---|---|---|
id | string | ID of the resource. |
name | string | Name of the resource. |
location | string | Location of the resource. |
properties | object | Result of an Operation Attempt. |
type | string | Type of Resource. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
list | select | subscriptionId , location , planId , operationId | Returns the information about action plan operation attempt. |
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 |
---|---|---|
location | string | Location of the resource. |
operationId | string | Identifier of the action plan operation. |
planId | string | Identifier of the action plan. |
subscriptionId | string | Subscription credentials that uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call. |
SELECT
examples
- list
Returns the information about action plan operation attempt.
SELECT
id,
name,
location,
properties,
type
FROM azure_stack.deployment_admin.action_plan_operation_attempts
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND location = '{{ location }}' -- required
AND planId = '{{ planId }}' -- required
AND operationId = '{{ operationId }}' -- required
;