operation_status
Creates, updates, deletes, gets or lists a operation_status
resource.
Overview
Name | operation_status |
Type | Resource |
Id | azure.log_analytics.operation_status |
Fields
Name | Datatype | Description |
---|---|---|
id | string | The operation Id. |
name | string | The operation name. |
endTime | string | The end time of the operation. |
error | object | Common error response for all Azure Resource Manager APIs to return error details for failed operations. (This also follows the OData error response format.) |
startTime | string | The start time of the operation. |
status | string | The status of the operation. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | asyncOperationId, location, subscriptionId | Get the status of a long running azure asynchronous operation. |
SELECT
examples
Get the status of a long running azure asynchronous operation.
SELECT
id,
name,
endTime,
error,
startTime,
status
FROM azure.log_analytics.operation_status
WHERE asyncOperationId = '{{ asyncOperationId }}'
AND location = '{{ location }}'
AND subscriptionId = '{{ subscriptionId }}';