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

The following fields are returned by SELECT queries:

OK. The operation completed.

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

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectlocation, operationId, subscriptionIdList 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.

NameDatatypeDescription
locationstringThe region name which the operation will lookup into.
operationIdstringThe target operation Id.
subscriptionIdstringA unique identifier for a Microsoft Azure subscription. The subscription ID forms part of the URI for every service call.

SELECT examples

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
;