operation_results
Creates, updates, deletes, gets or lists a operation_results
resource.
Overview
Name | operation_results |
Type | Resource |
Id | azure_stack.deployment_admin.operation_results |
Fields
Name | Datatype | Description |
---|---|---|
id | string | ID of the resource. |
name | string | Name of the resource. |
endTime | string | The deployment end time |
percentComplete | number | Percentage completed. |
startTime | string | The deployment start time |
status | string | Specifies the state of the Operation result. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | location, operationResultId, subscriptionId | Retrieves the specific operation results. |
SELECT
examples
Retrieves the specific operation results.
SELECT
id,
name,
endTime,
percentComplete,
startTime,
status
FROM azure_stack.deployment_admin.operation_results
WHERE location = '{{ location }}'
AND operationResultId = '{{ operationResultId }}'
AND subscriptionId = '{{ subscriptionId }}';