action_plan_operations
Creates, updates, deletes, gets or lists an action_plan_operations resource.
Overview
| Name | action_plan_operations |
| Type | Resource |
| Id | azure_stack.deployment_admin.action_plan_operations |
Fields
The following fields are returned by SELECT queries:
- get
- list
| Name | Datatype | Description |
|---|---|---|
id | string | ID of the resource. |
name | string | Name of the resource. |
eTag | string | Entity tag of the resource |
location | string | Location of the resource. |
properties | object | Action Plan Properties |
type | string | Type of Resource. |
| Name | Datatype | Description |
|---|---|---|
id | string | ID of the resource. |
name | string | Name of the resource. |
eTag | string | Entity tag of the resource |
location | string | Location of the resource. |
properties | object | Action Plan Properties |
type | string | Type of Resource. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get | select | subscriptionId, planId, operationId | Gets the specified action plan operation | |
list | select | subscriptionId, planId | Lists 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.
| Name | Datatype | Description |
|---|---|---|
operationId | string | Identifier of the action plan operation. |
planId | string | Identifier of the action plan. |
subscriptionId | string | Subscription credentials that uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call. |
SELECT examples
- get
- list
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
;
Lists the action plan operations
SELECT
id,
name,
eTag,
location,
properties,
type
FROM azure_stack.deployment_admin.action_plan_operations
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND planId = '{{ planId }}' -- required
;