Skip to main content

operations

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

Overview

Nameoperations
TypeResource
Idazure.devops.operations

Fields

The following fields are returned by SELECT queries:

The list of supported operations has been fetched successfully.

NameDatatypeDescription
namestringName of the operation.
displayobjectDisplay information of the operation.
isDataActionstringIndicates whether the operation applies to data-plane.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectLists all the operations supported by Microsoft.DevOps resource provider.

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

SELECT examples

Lists all the operations supported by Microsoft.DevOps resource provider.

SELECT
name,
display,
isDataAction
FROM azure.devops.operations
;