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
The request was successful; the request was well-formed and received properly.
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 |
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. |
SELECT
examples
- list
The request was successful; the request was well-formed and received properly.
SELECT
name,
display
FROM azure.change_analysis.operations
WHERE $skipToken = '{{ $skipToken }}'
;