Skip to main content

operations

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

Overview

Nameoperations
TypeResource
Idazure.search.operations

Fields

The following fields are returned by SELECT queries:

Success. The response describes the list of operations.

NameDatatypeDescription
namestringThe name of the operation. This name is of the form {provider}/{resource}/{operation}.
displayThe object that describes the operation.
isDataActionbooleanDescribes if the specified operation is a data plane API operation. Operations where this value is not true are supported directly by the resource provider.
originstringDescribes which originating entities are allowed to invoke this operation.
propertiesobjectDescribes additional properties for this operation.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectLists all of the available REST API operations of the Microsoft.Search 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 of the available REST API operations of the Microsoft.Search provider.

SELECT
name,
display,
isDataAction,
origin,
properties
FROM azure.search.operations
;