| Package | Description |
|---|---|
| com.azure.search.documents |
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. |
| com.azure.search.documents.indexes.models |
Package containing classes used for resource management operations that are being sent-to and received-from an
Azure Cognitive Search service.
|
| Modifier and Type | Method and Description |
|---|---|
Mono<IndexDocumentsResult> |
SearchAsyncClient.indexDocuments(IndexDocumentsBatch<?> batch)
Sends a batch of upload, merge, and/or delete actions to the search index.
|
IndexDocumentsResult |
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.
|
| Modifier and Type | Method and Description |
|---|---|
IndexDocumentsBatch<T> |
IndexDocumentsBatch.addActions(Iterable<IndexAction<T>> actions)
Adds document index actions to the batch.
|
IndexDocumentsBatch<T> |
IndexDocumentsBatch.addDeleteActions(Iterable<T> documents)
Adds document delete actions to the batch.
|
IndexDocumentsBatch<T> |
IndexDocumentsBatch.addDeleteActions(String keyName,
Iterable<String> keyValues)
Adds document delete actions based on key IDs to the batch.
|
IndexDocumentsBatch<T> |
IndexDocumentsBatch.addMergeActions(Iterable<T> documents)
Adds merge document actions to the batch..
|
IndexDocumentsBatch<T> |
IndexDocumentsBatch.addMergeOrUploadActions(Iterable<T> documents)
Adds merge or upload document actions to the batch.
|
IndexDocumentsBatch<T> |
IndexDocumentsBatch.addUploadActions(Iterable<T> documents)
Adds upload document actions to the batch.
|
Copyright © 2020 Microsoft Corporation. All rights reserved.