Class SearchableSnapshotsClient

java.lang.Object
org.elasticsearch.client.SearchableSnapshotsClient

@Deprecated public class SearchableSnapshotsClient extends Object
Deprecated.
The High Level Rest Client is deprecated in favor of the Elasticsearch Java API Client
A wrapper for the RestHighLevelClient that provides methods for accessing searchable snapshots APIs. See the Searchable Snapshots APIs on elastic.co for more information.
  • Constructor Summary

    Constructors
    Constructor
    Description
    Deprecated.
     
  • Method Summary

    Modifier and Type
    Method
    Description
    cacheStats(CachesStatsRequest request, org.elasticsearch.client.RequestOptions options)
    Deprecated.
    Executes the cache stats API, which provides statistics about searchable snapshot cache.
    org.elasticsearch.client.Cancellable
    cacheStatsAsync(CachesStatsRequest request, org.elasticsearch.client.RequestOptions options, org.elasticsearch.action.ActionListener<CachesStatsResponse> listener)
    Deprecated.
    Asynchronously executes the cache stats API, which provides statistics about searchable snapshot cache.
    org.elasticsearch.action.admin.cluster.snapshots.restore.RestoreSnapshotResponse
    mountSnapshot(MountSnapshotRequest request, org.elasticsearch.client.RequestOptions options)
    Deprecated.
    Executes the mount snapshot API, which mounts a snapshot as a searchable snapshot.
    org.elasticsearch.client.Cancellable
    mountSnapshotAsync(MountSnapshotRequest request, org.elasticsearch.client.RequestOptions options, org.elasticsearch.action.ActionListener<org.elasticsearch.action.admin.cluster.snapshots.restore.RestoreSnapshotResponse> listener)
    Deprecated.
    Asynchronously executes the mount snapshot API, which mounts a snapshot as a searchable snapshot.

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Constructor Details

    • SearchableSnapshotsClient

      public SearchableSnapshotsClient(RestHighLevelClient restHighLevelClient)
      Deprecated.
  • Method Details

    • mountSnapshot

      public org.elasticsearch.action.admin.cluster.snapshots.restore.RestoreSnapshotResponse mountSnapshot(MountSnapshotRequest request, org.elasticsearch.client.RequestOptions options) throws IOException
      Deprecated.
      Executes the mount snapshot API, which mounts a snapshot as a searchable snapshot. See the docs for more information.
      Parameters:
      request - the request
      options - the request options
      Returns:
      the response
      Throws:
      IOException - if an I/O exception occurred sending the request, or receiving or parsing the response
    • mountSnapshotAsync

      public org.elasticsearch.client.Cancellable mountSnapshotAsync(MountSnapshotRequest request, org.elasticsearch.client.RequestOptions options, org.elasticsearch.action.ActionListener<org.elasticsearch.action.admin.cluster.snapshots.restore.RestoreSnapshotResponse> listener)
      Deprecated.
      Asynchronously executes the mount snapshot API, which mounts a snapshot as a searchable snapshot.
      Parameters:
      request - the request
      options - the request options
      listener - the listener to be notified upon request completion
      Returns:
      cancellable that may be used to cancel the request
    • cacheStats

      public CachesStatsResponse cacheStats(CachesStatsRequest request, org.elasticsearch.client.RequestOptions options) throws IOException
      Deprecated.
      Executes the cache stats API, which provides statistics about searchable snapshot cache. See the docs for more information.
      Parameters:
      request - the request
      options - the request options
      Returns:
      the response
      Throws:
      IOException - if an I/O exception occurred sending the request, or receiving or parsing the response
    • cacheStatsAsync

      public org.elasticsearch.client.Cancellable cacheStatsAsync(CachesStatsRequest request, org.elasticsearch.client.RequestOptions options, org.elasticsearch.action.ActionListener<CachesStatsResponse> listener)
      Deprecated.
      Asynchronously executes the cache stats API, which provides statistics about searchable snapshot cache.
      Parameters:
      request - the request
      options - the request options
      listener - the listener to be notified upon request completion
      Returns:
      cancellable that may be used to cancel the request