Uses of Class
com.azure.search.documents.indexes.models.IndexDocumentsBatch
Packages that use IndexDocumentsBatch
Package
Description
Package containing classes for creating
SearchClient
or
SearchAsyncClient
used to perform document management, autocomplete, search, or
suggestion operations using an Azure Cognitive Search service index.Package containing classes for SearchServiceClient.
-
Uses of IndexDocumentsBatch in com.azure.search.documents
Methods in com.azure.search.documents with parameters of type IndexDocumentsBatchModifier and TypeMethodDescriptionSearchAsyncClient.indexDocuments
(IndexDocumentsBatch<?> batch) Sends a batch of upload, merge, and/or delete actions to the search index.SearchClient.indexDocuments
(IndexDocumentsBatch<?> batch) Sends a batch of upload, merge, and/or delete actions to the search index.Mono<com.azure.core.http.rest.Response<IndexDocumentsResult>>
SearchAsyncClient.indexDocumentsWithResponse
(IndexDocumentsBatch<?> batch, IndexDocumentsOptions options) Sends a batch of upload, merge, and/or delete actions to the search index.com.azure.core.http.rest.Response<IndexDocumentsResult>
SearchClient.indexDocumentsWithResponse
(IndexDocumentsBatch<?> batch, IndexDocumentsOptions options, com.azure.core.util.Context context) Sends a batch of upload, merge, and/or delete actions to the search index. -
Uses of IndexDocumentsBatch in com.azure.search.documents.indexes.models
Methods in com.azure.search.documents.indexes.models that return IndexDocumentsBatchModifier and TypeMethodDescriptionIndexDocumentsBatch.addActions
(Iterable<IndexAction<T>> actions) Adds document index actions to the batch.IndexDocumentsBatch.addDeleteActions
(Iterable<T> documents) Adds document delete actions to the batch.IndexDocumentsBatch.addDeleteActions
(String keyName, Iterable<String> keyValues) Adds document delete actions based on key IDs to the batch.IndexDocumentsBatch.addMergeActions
(Iterable<T> documents) Adds merge document actions to the batch.IndexDocumentsBatch.addMergeOrUploadActions
(Iterable<T> documents) Adds merge or upload document actions to the batch.IndexDocumentsBatch.addUploadActions
(Iterable<T> documents) Adds upload document actions to the batch.