Skip to content

Commit

Permalink
[PURIFY] remove all trace of x-pack async-search (#10)
Browse files Browse the repository at this point in the history
This commit removes all trace of Elastic licensed asyc-search

Signed-off-by: Peter Nied <petern@amazon.com>
  • Loading branch information
nknize authored and peternied committed Mar 13, 2021
1 parent 204122a commit 479dd4b
Show file tree
Hide file tree
Showing 14 changed files with 0 additions and 1,452 deletions.

This file was deleted.

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,6 @@ public class RestHighLevelClient implements Closeable {
private final RollupClient rollupClient = new RollupClient(this);
private final CcrClient ccrClient = new CcrClient(this);
private final TransformClient transformClient = new TransformClient(this);
private final AsyncSearchClient asyncSearchClient = new AsyncSearchClient(this);

/**
* Creates a {@link RestHighLevelClient} given the low level {@link RestClientBuilder} that allows to build the
Expand Down Expand Up @@ -442,16 +441,6 @@ public IndexLifecycleClient indexLifecycle() {
return ilmClient;
}

/**
* A wrapper for the {@link RestHighLevelClient} that provides methods for accessing the Elastic Index Async Search APIs.
* <p>
* See the <a href="https://www.elastic.co/guide/en/elasticsearch/reference/current/async-search.html"> X-Pack APIs on elastic.co</a>
* for more information.
*/
public AsyncSearchClient asyncSearch() {
return asyncSearchClient;
}

/**
* Provides methods for accessing the Elastic Licensed Migration APIs that
* are shipped with the default distribution of Elasticsearch. All of
Expand Down
Loading

0 comments on commit 479dd4b

Please sign in to comment.