operation_results
Creates, updates, deletes, gets or lists an operation_results
resource.
Overview
Name | operation_results |
Type | Resource |
Id | azure_stack.deployment_admin.operation_results |
Fields
The following fields are returned by SELECT
queries:
- get
Name | Datatype | Description |
---|---|---|
id | string | ID of the resource. |
name | string | Name of the resource. |
endTime | string (date-time) | The deployment end time |
percentComplete | number (double) | Percentage completed. |
startTime | string (date-time) | The deployment start time |
status | string | status of the Operation result. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
get | select | subscriptionId , location , operationResultId | Retrieves the specific operation results. |
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 |
---|---|---|
location | string | Location of the resource. |
operationResultId | string | The operation result identifier. |
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
Retrieves the specific operation results.
SELECT
id,
name,
endTime,
percentComplete,
startTime,
status
FROM azure_stack.deployment_admin.operation_results
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND location = '{{ location }}' -- required
AND operationResultId = '{{ operationResultId }}' -- required
;