operation_results
Creates, updates, deletes, gets or lists a operation_results
resource.
Overview
Name | operation_results |
Type | Resource |
Id | azure_extras.healthcare.operation_results |
Fields
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. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | locationName, operationResultId, subscriptionId | Get the operation result for a long running operation. |
SELECT
examples
Get the operation result for a long running operation.
SELECT
id,
name,
endTime,
properties,
startTime,
status
FROM azure_extras.healthcare.operation_results
WHERE locationName = '{{ locationName }}'
AND operationResultId = '{{ operationResultId }}'
AND subscriptionId = '{{ subscriptionId }}';