Skip to main content

operations

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

Overview

Nameoperations
TypeResource
Idazure_isv.vmwarecloudsimple.operations

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstringOperation Id.
namestringOperation ID.
endTimestring (date-time)End time of the operation.
errorobjectError Message if operation failed.
startTimestring (date-time)Start time of the operation.
statusstringOperation status.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectregion_id, operation_id, subscription_id, RefererImplements get of async operation. Return an async operation.
listselectImplements list of available operations. Return list of operations.

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
Refererstringreferer url. Required.
operation_idstringoperation id. Required.
region_idstringThe region Id (westus, eastus). Required.
subscription_idstring

SELECT examples

Implements get of async operation. Return an async operation.

SELECT
id,
name,
endTime,
error,
startTime,
status
FROM azure_isv.vmwarecloudsimple.operations
WHERE region_id = '{{ region_id }}' -- required
AND operation_id = '{{ operation_id }}' -- required
AND subscription_id = '{{ subscription_id }}' -- required
AND Referer = '{{ Referer }}' -- required
;