operations_status
Creates, updates, deletes, gets or lists an operations_status resource.
Overview
| Name | operations_status |
| Type | Resource |
| Id | azure_isv.redis_enterprise.operations_status |
Fields
The following fields are returned by SELECT queries:
- get
Success. The detailed status of the operation is in the response.
| Name | Datatype | Description |
|---|---|---|
id | string | The operation's unique id. |
name | string | The operation's name. |
endTime | string | The end time of the operation. |
error | object | Error response describing why the operation failed. (title: Error response) |
startTime | string | The start time of the operation. |
status | string | The current status of the operation. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get | select | location, operationId, subscriptionId | Gets the status of 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 name of Azure region. |
operationId | string | The ID of an ongoing async operation. |
subscriptionId | string | The ID of the target subscription. |
SELECT examples
- get
Gets the status of operation.
SELECT
id,
name,
endTime,
error,
startTime,
status
FROM azure_isv.redis_enterprise.operations_status
WHERE location = '{{ location }}' -- required
AND operationId = '{{ operationId }}' -- required
AND subscriptionId = '{{ subscriptionId }}' -- required
;