IndexersOperationsExtensions.CreateOrUpdate Method

Definition

Overloads

CreateOrUpdate(IIndexersOperations, Indexer, SearchRequestOptions, AccessCondition)

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

CreateOrUpdate(IIndexersOperations, String, Indexer, SearchRequestOptions, AccessCondition)

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

CreateOrUpdate(IIndexersOperations, Indexer, SearchRequestOptions, AccessCondition)

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 Microsoft.Azure.Search.Models.Indexer CreateOrUpdate (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);
static member CreateOrUpdate : Microsoft.Azure.Search.IIndexersOperations * Microsoft.Azure.Search.Models.Indexer * Microsoft.Azure.Search.Models.SearchRequestOptions * Microsoft.Azure.Search.Models.AccessCondition -> Microsoft.Azure.Search.Models.Indexer
<Extension()>
Public Function CreateOrUpdate (operations As IIndexersOperations, indexer As Indexer, Optional searchRequestOptions As SearchRequestOptions = Nothing, Optional accessCondition As AccessCondition = Nothing) As 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.

Returns

The indexer that was created or updated.

Applies to

CreateOrUpdate(IIndexersOperations, String, Indexer, SearchRequestOptions, AccessCondition)

Source:
IndexersOperationsExtensions.cs

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

public static Microsoft.Azure.Search.Models.Indexer CreateOrUpdate (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);
static member CreateOrUpdate : Microsoft.Azure.Search.IIndexersOperations * string * Microsoft.Azure.Search.Models.Indexer * Microsoft.Azure.Search.Models.SearchRequestOptions * Microsoft.Azure.Search.Models.AccessCondition -> Microsoft.Azure.Search.Models.Indexer
<Extension()>
Public Function CreateOrUpdate (operations As IIndexersOperations, indexerName As String, indexer As Indexer, Optional searchRequestOptions As SearchRequestOptions = Nothing, Optional accessCondition As AccessCondition = Nothing) As 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

Returns

Applies to