io.reactiverse.elasticsearch.client.IndexLifecycleClient Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of elasticsearch-client Show documentation
Show all versions of elasticsearch-client Show documentation
Reactiverse Elasticsearch client
/*
[NOTE] This is an automatically generated file.
Do not make changes to this file but to the shim code generator.
*/
package io.reactiverse.elasticsearch.client;
import io.vertx.core.*;
import io.vertx.codegen.annotations.*;
import org.elasticsearch.client.*;
import org.elasticsearch.action.ActionListener;
import org.elasticsearch.client.core.AcknowledgedResponse;
import org.elasticsearch.client.indexlifecycle.DeleteLifecyclePolicyRequest;
import org.elasticsearch.client.indexlifecycle.ExplainLifecycleRequest;
import org.elasticsearch.client.indexlifecycle.ExplainLifecycleResponse;
import org.elasticsearch.client.indexlifecycle.GetLifecyclePolicyRequest;
import org.elasticsearch.client.indexlifecycle.GetLifecyclePolicyResponse;
import org.elasticsearch.client.indexlifecycle.LifecycleManagementStatusRequest;
import org.elasticsearch.client.indexlifecycle.LifecycleManagementStatusResponse;
import org.elasticsearch.client.indexlifecycle.PutLifecyclePolicyRequest;
import org.elasticsearch.client.indexlifecycle.RemoveIndexLifecyclePolicyRequest;
import org.elasticsearch.client.indexlifecycle.RemoveIndexLifecyclePolicyResponse;
import org.elasticsearch.client.indexlifecycle.RetryLifecyclePolicyRequest;
import org.elasticsearch.client.indexlifecycle.StartILMRequest;
import org.elasticsearch.client.indexlifecycle.StopILMRequest;
import java.io.IOException;
import static java.util.Collections.emptySet;
@VertxGen()
public interface IndexLifecycleClient {
@GenIgnore(GenIgnore.PERMITTED_TYPE)
public void getLifecyclePolicyAsync(GetLifecyclePolicyRequest request, RequestOptions options, Handler> handler);
@GenIgnore(GenIgnore.PERMITTED_TYPE)
public void putLifecyclePolicyAsync(PutLifecyclePolicyRequest request, RequestOptions options, Handler> handler);
@GenIgnore(GenIgnore.PERMITTED_TYPE)
public void deleteLifecyclePolicyAsync(DeleteLifecyclePolicyRequest request, RequestOptions options, Handler> handler);
@GenIgnore(GenIgnore.PERMITTED_TYPE)
public void removeIndexLifecyclePolicyAsync(RemoveIndexLifecyclePolicyRequest request, RequestOptions options, Handler> handler);
@GenIgnore(GenIgnore.PERMITTED_TYPE)
public void startILMAsync(StartILMRequest request, RequestOptions options, Handler> handler);
@GenIgnore(GenIgnore.PERMITTED_TYPE)
public void lifecycleManagementStatusAsync(LifecycleManagementStatusRequest request, RequestOptions options, Handler> handler);
@GenIgnore(GenIgnore.PERMITTED_TYPE)
public void stopILMAsync(StopILMRequest request, RequestOptions options, Handler> handler);
@GenIgnore(GenIgnore.PERMITTED_TYPE)
public void explainLifecycleAsync(ExplainLifecycleRequest request, RequestOptions options, Handler> handler);
@GenIgnore(GenIgnore.PERMITTED_TYPE)
public void retryLifecyclePolicyAsync(RetryLifecyclePolicyRequest request, RequestOptions options, Handler> handler);
}