Skip to main content

action_plans

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

Overview

Nameaction_plans
TypeResource
Idazure_stack.deployment_admin.action_plans

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, planIdGets the specified action plan
listselectsubscriptionIdGets the list of action plans

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

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