Partager via


IndexersOperationsExtensions.CreateOrUpdateAsync Méthode

Définition

Surcharges

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

Crée un indexeur ou met à jour un indexeur s’il existe déjà. https://docs.microsoft.com/rest/api/searchservice/Create-Indexer

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

Crée un indexeur ou met à jour un indexeur s’il existe déjà. https://docs.microsoft.com/rest/api/searchservice/Create-Indexer

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

Source:
IndexersOperationsExtensions.Customization.cs

Crée un indexeur ou met à jour un indexeur s’il existe déjà. 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)

Paramètres

operations
IIndexersOperations

Groupe d’opérations pour cette méthode d’extension.

indexer
Indexer

La définition de l'indexeur pour créer ou mettre à jour.

searchRequestOptions
SearchRequestOptions

Paramètres supplémentaires pour l’opération.

accessCondition
AccessCondition

Paramètres supplémentaires pour l’opération.

cancellationToken
CancellationToken

Jeton d'annulation.

Retours

Indexeur créé ou mis à jour.

S’applique à

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

Source:
IndexersOperationsExtensions.Customization.cs

Crée un indexeur ou met à jour un indexeur s’il existe déjà. 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)

Paramètres

operations
IIndexersOperations

Groupe d’opérations pour cette méthode d’extension.

indexerName
String

Nom de l’indexeur à créer ou à mettre à jour.

indexer
Indexer

La définition de l'indexeur pour créer ou mettre à jour.

searchRequestOptions
SearchRequestOptions

Paramètres supplémentaires pour l’opération

accessCondition
AccessCondition

Paramètres supplémentaires pour l’opération

cancellationToken
CancellationToken

Jeton d'annulation.

Retours

S’applique à