| Package | Description |
|---|---|
| com.azure.search |
Package containing the classes for SearchIndexRestClient.
|
| com.azure.search.models |
Package containing the data models for SearchServiceRestClient.
|
| Modifier and Type | Method and Description |
|---|---|
Mono<IndexDocumentsResult> |
SearchIndexAsyncClient.indexDocuments(IndexDocumentsBatch<?> batch)
Sends a batch of upload, merge, and/or delete actions to the search index.
|
IndexDocumentsResult |
SearchIndexClient.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>> |
SearchIndexAsyncClient.indexDocumentsWithResponse(IndexDocumentsBatch<?> batch)
Sends a batch of upload, merge, and/or delete actions to the search index.
|
com.azure.core.http.rest.Response<IndexDocumentsResult> |
SearchIndexClient.indexDocumentsWithResponse(IndexDocumentsBatch<?> batch,
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.actions(List<IndexAction<T>> actions)
Set the actions property: The actions in the batch.
|
IndexDocumentsBatch<T> |
IndexDocumentsBatch.addDeleteAction(Iterable<T> documents)
Adds Delete IndexActions to the IndexAction chain for a collection of documents.
|
IndexDocumentsBatch<T> |
IndexDocumentsBatch.addDeleteAction(String keyName,
Iterable<String> keyValues)
Adds Delete IndexActions to the IndexAction chain for a collection of documents.
|
IndexDocumentsBatch<T> |
IndexDocumentsBatch.addDeleteAction(String keyName,
String... keyValues)
Adds Delete IndexActions to the IndexAction chain for a collection of documents.
|
IndexDocumentsBatch<T> |
IndexDocumentsBatch.addDeleteAction(T... documents)
Adds a Delete IndexAction to the IndexAction chain for a document.
|
IndexDocumentsBatch<T> |
IndexDocumentsBatch.addMergeAction(Iterable<T> documents)
Adds Merge IndexActions to the IndexAction chain for a collection of documents.
|
IndexDocumentsBatch<T> |
IndexDocumentsBatch.addMergeAction(T... documents)
Adds a Merge IndexAction to the IndexAction chain for a document.
|
IndexDocumentsBatch<T> |
IndexDocumentsBatch.addMergeOrUploadAction(Iterable<T> documents)
Adds Merge or Upload IndexActions to the IndexAction chain for a collection of documents.
|
IndexDocumentsBatch<T> |
IndexDocumentsBatch.addMergeOrUploadAction(T... documents)
Adds a Merge or Upload IndexAction to the IndexAction chain for a document.
|
IndexDocumentsBatch<T> |
IndexDocumentsBatch.addUploadAction(Iterable<T> documents)
Adds Upload IndexActions to the IndexAction chain for a collection of documents.
|
IndexDocumentsBatch<T> |
IndexDocumentsBatch.addUploadAction(T... documents)
Adds an Upload IndexAction to the IndexAction chain for a document.
|
Copyright © 2020 Microsoft Corporation. All rights reserved.