Skip to main content

action_plan_operation_attempts

Creates, updates, deletes, gets or lists an action_plan_operation_attempts resource.

Overview

Nameaction_plan_operation_attempts
TypeResource
Idazure_stack.deployment_admin.action_plan_operation_attempts

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstringID of the resource.
namestringName of the resource.
locationstringLocation of the resource.
propertiesobjectResult of an Operation Attempt.
typestringType of Resource.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectsubscriptionId, location, planId, operationIdReturns 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.

NameDatatypeDescription
locationstringLocation of the resource.
operationIdstringIdentifier of the action plan operation.
planIdstringIdentifier of the action plan.
subscriptionIdstringSubscription credentials that uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call.

SELECT examples

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
;