action_plan_operations
Creates, updates, deletes, gets or lists a action_plan_operations
resource.
Overview
Name | action_plan_operations |
Type | Resource |
Id | azure_stack.deployment_admin.action_plan_operations |
Fields
- vw_action_plan_operations
- action_plan_operations
Name | Datatype | Description |
---|---|---|
id | text | ID of the resource. |
name | text | Name of the resource. |
description | text | field from the properties object |
action_plan_instance_id | text | field from the properties object |
action_plan_operation_id | text | field from the properties object |
blob_container_name | text | field from the properties object |
e_tag | text | field from the properties object |
end_time | text | field from the properties object |
error | text | field from the properties object |
location | text | Location of the resource. |
operationId | text | field from the properties object |
outputs | text | field from the properties object |
parameters | text | field from the properties object |
planId | text | field from the properties object |
provisioning_state | text | field from the properties object |
start_time | text | field from the properties object |
subscriptionId | text | field from the properties object |
subscription_id | text | field from the properties object |
title | text | field from the properties object |
type | text | 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 Operation Properties |
type | string | Type of Resource. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | operationId, planId, subscriptionId | Gets the specified action plan operation |
list | SELECT | planId, subscriptionId | Lists the action plan operations |
SELECT
examples
Lists the action plan operations
- vw_action_plan_operations
- 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 }}';
SELECT
id,
name,
eTag,
location,
properties,
type
FROM azure_stack.deployment_admin.action_plan_operations
WHERE planId = '{{ planId }}'
AND subscriptionId = '{{ subscriptionId }}';