operations_results
Creates, updates, deletes, gets or lists an operations_results resource.
Overview
| Name | operations_results |
| Type | Resource |
| Id | azure.orbital.operations_results |
Fields
The following fields are returned by SELECT queries:
- get
Successfully retrieved the operation result.
| Name | Datatype | Description |
|---|---|---|
id | string | ID of the resource. |
name | string | Name of the resource. |
endTime | string (date-time) | The operation end time (ISO 8601 UTC standard). |
error | object | Operation result error properties. |
nextLink | string | The URL to get the next set of results. |
percentComplete | number (double) | Percentage completed. |
properties | object | Operation result properties. |
startTime | string (date-time) | The operation start time (ISO 8601 UTC standard). |
status | string | The status of operation. |
value | array | A list of results when the operation returns multiple results. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get | select | subscriptionId, location, operationId | Returns 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 | The name of Azure region. |
operationId | string | The ID of an ongoing async operation. |
subscriptionId | string | The ID of the target subscription. |
SELECT examples
- get
Returns operation results.
SELECT
id,
name,
endTime,
error,
nextLink,
percentComplete,
properties,
startTime,
status,
value
FROM azure.orbital.operations_results
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND location = '{{ location }}' -- required
AND operationId = '{{ operationId }}' -- required
;