operation_results
Creates, updates, deletes, gets or lists a operation_results
resource.
Overview
Name | operation_results |
Type | Resource |
Id | azure.bot_service.operation_results |
Fields
Name | Datatype | Description |
---|---|---|
id | string | The ID of the operation returned. |
name | string | The name 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 | 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,
startTime,
status
FROM azure.bot_service.operation_results
WHERE operationResultId = '{{ operationResultId }}'
AND subscriptionId = '{{ subscriptionId }}';