operations_results
Creates, updates, deletes, gets or lists a operations_results
resource.
Overview
Name | operations_results |
Type | Resource |
Id | azure.orbital.operations_results |
Fields
- vw_operations_results
- operations_results
Name | Datatype | Description |
---|---|---|
id | text | ID of the resource. |
name | text | Name of the resource. |
end_time | text | field from the properties object |
error | text | Operation result error properties. |
location | text | field from the properties object |
next_link | text | field from the properties object |
operationId | text | field from the properties object |
percent_complete | text | field from the properties object |
start_time | text | field from the properties object |
status | text | The status of operation. |
subscriptionId | text | field from the properties object |
value | text | A list of results when the operation returns multiple results. |
Name | Datatype | Description |
---|---|---|
id | string | ID of the resource. |
name | string | Name of the resource. |
endTime | string | 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 | Percentage completed. |
properties | object | Operation result properties. |
startTime | string | 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
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | location, operationId, subscriptionId | Returns operation results. |
SELECT
examples
Returns operation results.
- vw_operations_results
- operations_results
SELECT
id,
name,
end_time,
error,
location,
next_link,
operationId,
percent_complete,
start_time,
status,
subscriptionId,
value
FROM azure.orbital.vw_operations_results
WHERE location = '{{ location }}'
AND operationId = '{{ operationId }}'
AND subscriptionId = '{{ subscriptionId }}';
SELECT
id,
name,
endTime,
error,
nextLink,
percentComplete,
properties,
startTime,
status,
value
FROM azure.orbital.operations_results
WHERE location = '{{ location }}'
AND operationId = '{{ operationId }}'
AND subscriptionId = '{{ subscriptionId }}';