Skip to main content

servers_operation_status

Creates, updates, deletes, gets or lists a servers_operation_status resource.

Overview

Nameservers_operation_status
TypeResource
Idazure.analysis_services.servers_operation_status

Fields

NameDatatypeDescription
idstringThe operation Id.
namestringThe operation name.
endTimestringThe end time of the operation.
errorobjectThe error detail.
startTimestringThe start time of the operation.
statusstringThe status of the operation.

Methods

NameAccessible byRequired ParamsDescription
listSELECTlocation, operationId, subscriptionIdList 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 }}';