operations
Creates, updates, deletes, gets or lists an operations
resource.
Overview
Name | operations |
Type | Resource |
Id | azure.search.operations |
Fields
The following fields are returned by SELECT
queries:
- list
Success. The response describes the list of operations.
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
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
list | select | Lists 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.
Name | Datatype | Description |
---|
SELECT
examples
- list
Lists all of the available REST API operations of the Microsoft.Search provider.
SELECT
name,
display,
isDataAction,
origin,
properties
FROM azure.search.operations
;