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