operations_status
Creates, updates, deletes, gets or lists a operations_status
resource.
Overview
Name | operations_status |
Type | Resource |
Id | azure_isv.redis_enterprise.operations_status |
Fields
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 | 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 current status of the operation. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | location, operationId, subscriptionId | Gets the status of operation. |
SELECT
examples
Gets the status of operation.
SELECT
id,
name,
endTime,
error,
startTime,
status
FROM azure_isv.redis_enterprise.operations_status
WHERE location = '{{ location }}'
AND operationId = '{{ operationId }}'
AND subscriptionId = '{{ subscriptionId }}';