Compartir a través de


IndexersOperationsExtensions.CreateOrUpdateAsync Método

Definición

Sobrecargas

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

Crea un indexador o actualiza un indexador si ya existe. https://docs.microsoft.com/rest/api/searchservice/Create-Indexer

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

Crea un indexador o actualiza un indexador si ya existe. https://docs.microsoft.com/rest/api/searchservice/Create-Indexer

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

Source:
IndexersOperationsExtensions.Customization.cs

Crea un indexador o actualiza un indexador si ya existe. 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)

Parámetros

operations
IIndexersOperations

El grupo de operaciones de este método de extensión.

indexer
Indexer

Definición del indizador que se va a crear o actualizar.

searchRequestOptions
SearchRequestOptions

Parámetros adicionales para la operación.

accessCondition
AccessCondition

Parámetros adicionales para la operación.

cancellationToken
CancellationToken

Token de cancelación.

Devoluciones

Indexador que se creó o actualizó.

Se aplica a

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

Source:
IndexersOperationsExtensions.Customization.cs

Crea un indexador o actualiza un indexador si ya existe. 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)

Parámetros

operations
IIndexersOperations

El grupo de operaciones de este método de extensión.

indexerName
String

Nombre del indexador que se va a crear o actualizar.

indexer
Indexer

Definición del indizador que se va a crear o actualizar.

searchRequestOptions
SearchRequestOptions

Parámetros adicionales para la operación

accessCondition
AccessCondition

Parámetros adicionales para la operación

cancellationToken
CancellationToken

Token de cancelación.

Devoluciones

Se aplica a