Skip to main content

action_plan_operation_attempts

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

Overview

Nameaction_plan_operation_attempts
TypeResource
Idazure_stack.deployment_admin.action_plan_operation_attempts

Fields

NameDatatypeDescription
idtextID of the resource.
nametextName of the resource.
end_timetextfield from the properties object
locationtextLocation of the resource.
operationIdtextfield from the properties object
planIdtextfield from the properties object
provisioning_statetextfield from the properties object
start_timetextfield from the properties object
subscriptionIdtextfield from the properties object
typetextType of Resource.

Methods

NameAccessible byRequired ParamsDescription
listSELECTlocation, operationId, planId, subscriptionIdReturns the information about action plan operation attempt.

SELECT examples

Returns the information about action plan operation attempt.

SELECT
id,
name,
end_time,
location,
operationId,
planId,
provisioning_state,
start_time,
subscriptionId,
type
FROM azure_stack.deployment_admin.vw_action_plan_operation_attempts
WHERE location = '{{ location }}'
AND operationId = '{{ operationId }}'
AND planId = '{{ planId }}'
AND subscriptionId = '{{ subscriptionId }}';