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
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. |
startTime | string | The start time of the operation. |
status | string | The status of the operation. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
list | SELECT | location, operationId, subscriptionId | List the status of operation. |
SELECT
examples
List the status of operation.
SELECT
id,
name,
endTime,
error,
startTime,
status
FROM azure.analysis_services.servers_operation_status
WHERE location = '{{ location }}'
AND operationId = '{{ operationId }}'
AND subscriptionId = '{{ subscriptionId }}';