Skip to main content

action_plan_operations

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

Overview

Nameaction_plan_operations
TypeResource
Idazure_stack.deployment_admin.action_plan_operations

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstringID of the resource.
namestringName of the resource.
eTagstringEntity tag of the resource
locationstringLocation of the resource.
propertiesobjectAction Plan Properties
typestringType of Resource.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectsubscriptionId, planId, operationIdGets the specified action plan operation
listselectsubscriptionId, planIdLists the action plan operations

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
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

Gets the specified action plan operation

SELECT
id,
name,
eTag,
location,
properties,
type
FROM azure_stack.deployment_admin.action_plan_operations
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND planId = '{{ planId }}' -- required
AND operationId = '{{ operationId }}' -- required
;