SearchIndexerClient.CreateIndexer Method

Definition

Overloads

Name Description
CreateIndexer(RequestContent, RequestContext)

[Protocol Method] Creates a new indexer.

  • This protocol method allows explicit creation of the request and processing of the response for advanced scenarios.
CreateIndexer(SearchIndexer, CancellationToken)

Creates a new indexer.

CreateIndexer(RequestContent, RequestContext)

Source:
SearchIndexerClient.cs
Source:
SearchIndexerClient.cs

[Protocol Method] Creates a new indexer.

  • This protocol method allows explicit creation of the request and processing of the response for advanced scenarios.
public virtual Azure.Response CreateIndexer(Azure.Core.RequestContent content, Azure.RequestContext context = default);
abstract member CreateIndexer : Azure.Core.RequestContent * Azure.RequestContext -> Azure.Response
override this.CreateIndexer : Azure.Core.RequestContent * Azure.RequestContext -> Azure.Response
Public Overridable Function CreateIndexer (content As RequestContent, Optional context As RequestContext = Nothing) As Response

Parameters

content
RequestContent

The content to send as the body of the request.

context
RequestContext

The request options, which can override default behaviors of the client pipeline on a per-call basis.

Returns

The response returned from the service.

Exceptions

content is null.

Service returned a non-success status code.

Applies to

CreateIndexer(SearchIndexer, CancellationToken)

Source:
SearchIndexerClient.cs
Source:
SearchIndexerClient.cs

Creates a new indexer.

public virtual Azure.Response<Azure.Search.Documents.Indexes.Models.SearchIndexer> CreateIndexer(Azure.Search.Documents.Indexes.Models.SearchIndexer indexer, System.Threading.CancellationToken cancellationToken = default);
abstract member CreateIndexer : Azure.Search.Documents.Indexes.Models.SearchIndexer * System.Threading.CancellationToken -> Azure.Response<Azure.Search.Documents.Indexes.Models.SearchIndexer>
override this.CreateIndexer : Azure.Search.Documents.Indexes.Models.SearchIndexer * System.Threading.CancellationToken -> Azure.Response<Azure.Search.Documents.Indexes.Models.SearchIndexer>
Public Overridable Function CreateIndexer (indexer As SearchIndexer, Optional cancellationToken As CancellationToken = Nothing) As Response(Of SearchIndexer)

Parameters

indexer
SearchIndexer

The definition of the indexer to create.

cancellationToken
CancellationToken

The cancellation token that can be used to cancel the operation.

Returns

The Response<T> from the server containing the SearchIndexer created. This may differ slightly from what was passed into the service.

Exceptions

indexer is null.

Service returned a non-success status code.

Applies to