Skip to main content

action_plan_operations

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

Overview

Nameaction_plan_operations
TypeResource
Idazure_stack.deployment_admin.action_plan_operations

Fields

NameDatatypeDescription
idtextID of the resource.
nametextName of the resource.
descriptiontextfield from the properties object
action_plan_instance_idtextfield from the properties object
action_plan_operation_idtextfield from the properties object
blob_container_nametextfield from the properties object
e_tagtextfield from the properties object
end_timetextfield from the properties object
errortextfield from the properties object
locationtextLocation of the resource.
operationIdtextfield from the properties object
outputstextfield from the properties object
parameterstextfield 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
subscription_idtextfield from the properties object
titletextfield from the properties object
typetextType of Resource.

Methods

NameAccessible byRequired ParamsDescription
getSELECToperationId, planId, subscriptionIdGets the specified action plan operation
listSELECTplanId, subscriptionIdLists the action plan operations

SELECT examples

Lists the action plan operations

SELECT
id,
name,
description,
action_plan_instance_id,
action_plan_operation_id,
blob_container_name,
e_tag,
end_time,
error,
location,
operationId,
outputs,
parameters,
planId,
provisioning_state,
start_time,
subscriptionId,
subscription_id,
title,
type
FROM azure_stack.deployment_admin.vw_action_plan_operations
WHERE planId = '{{ planId }}'
AND subscriptionId = '{{ subscriptionId }}';