Skip to main content

operations

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

Overview

Nameoperations
TypeResource
Idazure.change_analysis.operations

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
namestringThe resource provider operation name.
displayobjectThe resource provider operation details.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselect$skipTokenLists 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.

NameDatatypeDescription
$skipTokenstringA 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

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 }}'
;