operations
Creates, updates, deletes, gets or lists a operations
resource.
Overview
Name | operations |
Type | Resource |
Id | azure.search.operations |
Fields
Name | Datatype | Description |
---|---|---|
name | string | The name of the operation. This name is of the form {provider}/{resource}/{operation}. |
display | `` | The object that describes the operation. |
isDataAction | boolean | Describes if the specified operation is a data plane API operation. Operations where this value is not true are supported directly by the resource provider. |
origin | string | Describes which originating entities are allowed to invoke this operation. |
properties | object | Describes additional properties for this operation. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
list | SELECT |
| Lists 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
;