async_operation_status
Creates, updates, deletes, gets or lists an async_operation_status
resource.
Overview
Name | async_operation_status |
Type | Resource |
Id | azure_isv.redis.async_operation_status |
Fields
The following fields are returned by SELECT
queries:
- get
Asynchronous operation status response
Name | Datatype | Description |
---|---|---|
id | string | Fully qualified ID for the async operation. |
name | string | Name of the async operation. |
endTime | string (date-time) | The end time of the operation. |
error | object | If present, details of the operation error. |
operations | array | The operations list. |
percentComplete | number | Percent of the operation that is complete. |
properties | object | Additional properties from RP, only when operation is successful |
startTime | string (date-time) | The start time of the operation. |
status | string | Operation status. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
get | select | location , operationId , subscriptionId | For checking the ongoing status of an 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 | string | The location at which operation was triggered |
operationId | string | The ID of asynchronous operation |
subscriptionId | string | The ID of the target subscription. |
SELECT
examples
- get
For checking the ongoing status of an operation
SELECT
id,
name,
endTime,
error,
operations,
percentComplete,
properties,
startTime,
status
FROM azure_isv.redis.async_operation_status
WHERE location = '{{ location }}' -- required
AND operationId = '{{ operationId }}' -- required
AND subscriptionId = '{{ subscriptionId }}' -- required
;