servers_operation_status
Creates, updates, deletes, gets or lists a servers_operation_status resource.
Overview
| Name | servers_operation_status |
| Type | Resource |
| Id | azure.analysis_services.servers_operation_status |
Fields
The following fields are returned by SELECT queries:
- list
OK. The operation completed.
| Name | Datatype | Description |
|---|---|---|
id | string | The operation Id. |
name | string | The operation name. |
endTime | string | The end time of the operation. |
error | object | The error detail of the operation if any. |
startTime | string | The start time of the operation. |
status | string | The status of the operation. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list | select | location, operationId, subscriptionId | List 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 region name which the operation will lookup into. |
operationId | string | The target operation Id. |
subscriptionId | string | A unique identifier for a Microsoft Azure subscription. The subscription ID forms part of the URI for every service call. |
SELECT examples
- list
List the status of operation.
SELECT
id,
name,
endTime,
error,
startTime,
status
FROM azure.analysis_services.servers_operation_status
WHERE location = '{{ location }}' -- required
AND operationId = '{{ operationId }}' -- required
AND subscriptionId = '{{ subscriptionId }}' -- required
;