Skip to main content

operations

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

Overview

Nameoperations
TypeResource
Idazure.search.operations

Fields

NameDatatypeDescription
namestringThe name of the operation. This name is of the form {provider}/{resource}/{operation}.
display``The 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

NameAccessible byRequired ParamsDescription
listSELECTLists all of the available REST API operations of the Microsoft.Search provider.

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
;