Skip to content

Commit

Permalink
Remove tasks client from HRLC (#83649)
Browse files Browse the repository at this point in the history
  • Loading branch information
danhermann committed Feb 9, 2022
1 parent bf9879f commit 056a3c3
Show file tree
Hide file tree
Showing 14 changed files with 14 additions and 1,559 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -279,7 +279,6 @@ public class RestHighLevelClient implements Closeable {
private final ClusterClient clusterClient = new ClusterClient(this);
private final IngestClient ingestClient = new IngestClient(this);
private final SnapshotClient snapshotClient = new SnapshotClient(this);
private final TasksClient tasksClient = new TasksClient(this);
private final XPackClient xPackClient = new XPackClient(this);
private final MachineLearningClient machineLearningClient = new MachineLearningClient(this);
private final SecurityClient securityClient = new SecurityClient(this);
Expand Down Expand Up @@ -394,15 +393,6 @@ public final SnapshotClient snapshot() {
return snapshotClient;
}

/**
* Provides a {@link TasksClient} which can be used to access the Tasks API.
*
* See <a href="https://www.elastic.co/guide/en/elasticsearch/reference/current/tasks.html">Task Management API on elastic.co</a>
*/
public final TasksClient tasks() {
return tasksClient;
}

/**
* Provides methods for accessing the Elastic Licensed X-Pack Info
* and Usage APIs that are shipped with the default distribution of
Expand Down

This file was deleted.

This file was deleted.

0 comments on commit 056a3c3

Please sign in to comment.