Skip to main content

operations

Creates, updates, deletes, gets or lists an operations resource.

Overview

Nameoperations
TypeResource
Idazure.dev_test_labs.operations

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
errorobjectError details for the operation in case of a failure.
statusstringThe operation status.
statusCodestringThe status code for the operation.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectsubscriptionId, locationName, nameapi-versionGet 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
locationNamestringThe name of the location.
namestringThe name of the operation.
subscriptionIdstringThe subscription ID.
api-versionstringClient API version.

SELECT examples

Get operation.

SELECT
error,
status,
statusCode
FROM azure.dev_test_labs.operations
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND locationName = '{{ locationName }}' -- required
AND name = '{{ name }}' -- required
AND api-version = '{{ api-version }}'
;