operations
Creates, updates, deletes, gets or lists an operations resource.
Overview
| Name | operations |
| Type | Resource |
| Id | azure.workload_monitor.operations |
Fields
The following fields are returned by SELECT queries:
- list
The list of available REST API operations.
| Name | Datatype | Description |
|---|---|---|
name | string | The name of the operation being performed on this particular object. (example: Microsoft.WorkloadMonitor/monitors/read) |
display | object | The localized display information for this particular operation or action. |
origin | string | The intended executor of the operation. (example: user, system) |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list | select | api-version |
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 |
|---|---|---|
api-version | string | The API version to use for the operation. |
SELECT examples
- list
The list of available REST API operations.
SELECT
name,
display,
origin
FROM azure.workload_monitor.operations
WHERE api-version = '{{ api-version }}'
;