async_operation_status
Creates, updates, deletes, gets or lists a async_operation_status
resource.
Overview
Name | async_operation_status |
Type | Resource |
Id | azure_isv.redis.async_operation_status |
Fields
Name | Datatype | Description |
---|---|---|
id | string | Fully qualified ID for the async operation. |
name | string | Name of the async operation. |
endTime | string | The end time of the operation. |
error | object | The error detail. |
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 | The start time of the operation. |
status | string | Operation status. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | location, operationId, subscriptionId | For checking the ongoing status of an operation |
SELECT
examples
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 }}'
AND operationId = '{{ operationId }}'
AND subscriptionId = '{{ subscriptionId }}';