operations
Creates, updates, deletes, gets or lists an operations resource.
Overview
| Name | operations |
| Type | Resource |
| Id | azure_isv.vmwarecloudsimple.operations |
Fields
The following fields are returned by SELECT queries:
- get
- list
| Name | Datatype | Description |
|---|---|---|
id | string | Operation Id. |
name | string | Operation ID. |
endTime | string (date-time) | End time of the operation. |
error | object | Error Message if operation failed. |
startTime | string (date-time) | Start time of the operation. |
status | string | Operation status. |
| Name | Datatype | Description |
|---|---|---|
name | string | {resourceProviderNamespace}/{resourceType}/{read|write|delete|action}. |
display | object | The list of operations. |
isDataAction | boolean | Indicating whether the operation is a data action or not. |
origin | string | The origin of operation. Known values are: "user", "system", and "user,system". |
serviceSpecification | object | The list of specification's service metrics. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get | select | region_id, operation_id, subscription_id, Referer | Implements get of async operation. Return an async operation. | |
list | select | Implements 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.
| Name | Datatype | Description |
|---|---|---|
Referer | string | referer url. Required. |
operation_id | string | operation id. Required. |
region_id | string | The region Id (westus, eastus). Required. |
subscription_id | string |
SELECT examples
- get
- list
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
;
Implements list of available operations. Return list of operations.
SELECT
name,
display,
isDataAction,
origin,
serviceSpecification
FROM azure_isv.vmwarecloudsimple.operations
;