operations
Creates, updates, deletes, gets or lists an operations resource.
Overview
| Name | operations |
| Type | Resource |
| Id | azure.change_analysis.operations |
Fields
The following fields are returned by SELECT queries:
- list
| Name | Datatype | Description |
|---|---|---|
name | string | The resource provider operation name. |
display | object | The resource provider operation details. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list | select | $skipToken | Lists all the supported operations by the Microsoft.ChangeAnalysis resource provider along with their descriptions. Lists all the supported operations by the Microsoft.ChangeAnalysis resource provider along with their descriptions. |
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 |
|---|---|---|
$skipToken | string | A skip token is used to continue retrieving items after an operation returns a partial result. If a previous response contains a nextLink element, the value of the nextLink element will include a skipToken parameter that specifies a starting point to use for subsequent calls. Default value is None. |
SELECT examples
- list
Lists all the supported operations by the Microsoft.ChangeAnalysis resource provider along with their descriptions. Lists all the supported operations by the Microsoft.ChangeAnalysis resource provider along with their descriptions.
SELECT
name,
display
FROM azure.change_analysis.operations
WHERE $skipToken = '{{ $skipToken }}'
;