add MoveToStepAction and RetryAction to the XPackClient Actions

This commit is contained in:
Tal Levy 2018-06-01 11:46:04 -07:00
parent fbfb4ff8c7
commit 62da5dc17b
1 changed files with 5 additions and 1 deletions

View File

@ -54,7 +54,9 @@ import org.elasticsearch.xpack.core.indexlifecycle.TimeseriesLifecycleType;
import org.elasticsearch.xpack.core.indexlifecycle.action.DeleteLifecycleAction;
import org.elasticsearch.xpack.core.indexlifecycle.action.ExplainLifecycleAction;
import org.elasticsearch.xpack.core.indexlifecycle.action.GetLifecycleAction;
import org.elasticsearch.xpack.core.indexlifecycle.action.MoveToStepAction;
import org.elasticsearch.xpack.core.indexlifecycle.action.PutLifecycleAction;
import org.elasticsearch.xpack.core.indexlifecycle.action.RetryAction;
import org.elasticsearch.xpack.core.logstash.LogstashFeatureSetUsage;
import org.elasticsearch.xpack.core.ml.MachineLearningFeatureSetUsage;
import org.elasticsearch.xpack.core.ml.MlMetadata;
@ -327,7 +329,9 @@ public class XPackClientPlugin extends Plugin implements ActionPlugin, NetworkPl
DeleteLifecycleAction.INSTANCE,
GetLifecycleAction.INSTANCE,
PutLifecycleAction.INSTANCE,
ExplainLifecycleAction.INSTANCE
ExplainLifecycleAction.INSTANCE,
MoveToStepAction.INSTANCE,
RetryAction.INSTANCE
);
}