operation_results
Creates, updates, deletes, gets or lists an operation_results resource.
Overview
| Name | operation_results |
| Type | Resource |
| Id | azure_extras.health_data_services.operation_results |
Fields
The following fields are returned by SELECT queries:
- get
| Name | Datatype | Description |
|---|---|---|
id | string | The ID of the operation returned. |
name | string | The name of the operation result. |
endTime | string | The time that the operation finished. |
properties | object | Additional properties of the operation result. |
startTime | string | The time that the operation was started. |
status | string | The status of the operation being performed. Known values are: "Canceled", "Succeeded", "Failed", "Requested", and "Running". (Canceled, Succeeded, Failed, Requested, Running) |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get | select | location_name, operation_result_id, subscription_id | Get the operation result for a long running operation. |
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_name | string | The location of the operation. Required. |
operation_result_id | string | The ID of the operation result to get. Required. |
subscription_id | string |
SELECT examples
- get
Get the operation result for a long running operation.
SELECT
id,
name,
endTime,
properties,
startTime,
status
FROM azure_extras.health_data_services.operation_results
WHERE location_name = '{{ location_name }}' -- required
AND operation_result_id = '{{ operation_result_id }}' -- required
AND subscription_id = '{{ subscription_id }}' -- required
;