action_plan_operation_attempts
Creates, updates, deletes, gets or lists a action_plan_operation_attempts
resource.
Overview
Name | action_plan_operation_attempts |
Type | Resource |
Id | azure_stack.deployment_admin.action_plan_operation_attempts |
Fields
- vw_action_plan_operation_attempts
- action_plan_operation_attempts
Name | Datatype | Description |
---|---|---|
id | text | ID of the resource. |
name | text | Name of the resource. |
end_time | text | field from the properties object |
location | text | Location of the resource. |
operationId | 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 |
type | text | Type of Resource. |
Name | Datatype | Description |
---|---|---|
id | string | ID of the resource. |
name | string | Name of the resource. |
location | string | Location of the resource. |
properties | object | Operation Attempt Properties. |
type | string | Type of Resource. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
list | SELECT | location, operationId, planId, subscriptionId | Returns the information about action plan operation attempt. |
SELECT
examples
Returns the information about action plan operation attempt.
- vw_action_plan_operation_attempts
- action_plan_operation_attempts
SELECT
id,
name,
end_time,
location,
operationId,
planId,
provisioning_state,
start_time,
subscriptionId,
type
FROM azure_stack.deployment_admin.vw_action_plan_operation_attempts
WHERE location = '{{ location }}'
AND operationId = '{{ operationId }}'
AND planId = '{{ planId }}'
AND subscriptionId = '{{ subscriptionId }}';
SELECT
id,
name,
location,
properties,
type
FROM azure_stack.deployment_admin.action_plan_operation_attempts
WHERE location = '{{ location }}'
AND operationId = '{{ operationId }}'
AND planId = '{{ planId }}'
AND subscriptionId = '{{ subscriptionId }}';