IndexersOperationsExtensions.CreateOrUpdateAsync Method

Definition

Overloads

CreateOrUpdateAsync(IIndexersOperations, Indexer, SearchRequestOptions, AccessCondition, CancellationToken)

Creates a new indexer or updates an indexer if it already exists. https://docs.microsoft.com/rest/api/searchservice/Create-Indexer

CreateOrUpdateAsync(IIndexersOperations, String, Indexer, SearchRequestOptions, AccessCondition, CancellationToken)

Creates a new indexer or updates an indexer if it already exists. https://docs.microsoft.com/rest/api/searchservice/Create-Indexer

CreateOrUpdateAsync(IIndexersOperations, Indexer, SearchRequestOptions, AccessCondition, CancellationToken)

Source:
IndexersOperationsExtensions.Customization.cs

Creates a new indexer or updates an indexer if it already exists. https://docs.microsoft.com/rest/api/searchservice/Create-Indexer

public static System.Threading.Tasks.Task<Microsoft.Azure.Search.Models.Indexer> CreateOrUpdateAsync (this Microsoft.Azure.Search.IIndexersOperations operations, Microsoft.Azure.Search.Models.Indexer indexer, Microsoft.Azure.Search.Models.SearchRequestOptions searchRequestOptions = default, Microsoft.Azure.Search.Models.AccessCondition accessCondition = default, System.Threading.CancellationToken cancellationToken = default);
static member CreateOrUpdateAsync : Microsoft.Azure.Search.IIndexersOperations * Microsoft.Azure.Search.Models.Indexer * Microsoft.Azure.Search.Models.SearchRequestOptions * Microsoft.Azure.Search.Models.AccessCondition * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Microsoft.Azure.Search.Models.Indexer>
<Extension()>
Public Function CreateOrUpdateAsync (operations As IIndexersOperations, indexer As Indexer, Optional searchRequestOptions As SearchRequestOptions = Nothing, Optional accessCondition As AccessCondition = Nothing, Optional cancellationToken As CancellationToken = Nothing) As Task(Of Indexer)

Parameters

operations
IIndexersOperations

The operations group for this extension method.

indexer
Indexer

The definition of the indexer to create or update.

searchRequestOptions
SearchRequestOptions

Additional parameters for the operation.

accessCondition
AccessCondition

Additional parameters for the operation.

cancellationToken
CancellationToken

The cancellation token.

Returns

The indexer that was created or updated.

Applies to

CreateOrUpdateAsync(IIndexersOperations, String, Indexer, SearchRequestOptions, AccessCondition, CancellationToken)

Source:
IndexersOperationsExtensions.Customization.cs

Creates a new indexer or updates an indexer if it already exists. https://docs.microsoft.com/rest/api/searchservice/Create-Indexer

public static System.Threading.Tasks.Task<Microsoft.Azure.Search.Models.Indexer> CreateOrUpdateAsync (this Microsoft.Azure.Search.IIndexersOperations operations, string indexerName, Microsoft.Azure.Search.Models.Indexer indexer, Microsoft.Azure.Search.Models.SearchRequestOptions searchRequestOptions = default, Microsoft.Azure.Search.Models.AccessCondition accessCondition = default, System.Threading.CancellationToken cancellationToken = default);
static member CreateOrUpdateAsync : Microsoft.Azure.Search.IIndexersOperations * string * Microsoft.Azure.Search.Models.Indexer * Microsoft.Azure.Search.Models.SearchRequestOptions * Microsoft.Azure.Search.Models.AccessCondition * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Microsoft.Azure.Search.Models.Indexer>
<Extension()>
Public Function CreateOrUpdateAsync (operations As IIndexersOperations, indexerName As String, indexer As Indexer, Optional searchRequestOptions As SearchRequestOptions = Nothing, Optional accessCondition As AccessCondition = Nothing, Optional cancellationToken As CancellationToken = Nothing) As Task(Of Indexer)

Parameters

operations
IIndexersOperations

The operations group for this extension method.

indexerName
String

The name of the indexer to create or update.

indexer
Indexer

The definition of the indexer to create or update.

searchRequestOptions
SearchRequestOptions

Additional parameters for the operation

accessCondition
AccessCondition

Additional parameters for the operation

cancellationToken
CancellationToken

The cancellation token.

Returns

Applies to