All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.elasticsearch.xpack.core.ccr.action.PauseFollowAction Maven / Gradle / Ivy

/*
 * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
 * or more contributor license agreements. Licensed under the Elastic License
 * 2.0; you may not use this file except in compliance with the Elastic License
 * 2.0.
 */

package org.elasticsearch.xpack.core.ccr.action;

import org.elasticsearch.action.ActionRequestValidationException;
import org.elasticsearch.action.ActionType;
import org.elasticsearch.action.support.master.AcknowledgedResponse;
import org.elasticsearch.action.support.master.MasterNodeRequest;
import org.elasticsearch.common.io.stream.StreamInput;
import org.elasticsearch.common.io.stream.StreamOutput;

import java.io.IOException;
import java.util.Objects;

public class PauseFollowAction extends ActionType {

    public static final PauseFollowAction INSTANCE = new PauseFollowAction();
    public static final String NAME = "cluster:admin/xpack/ccr/pause_follow";

    private PauseFollowAction() {
        super(NAME, AcknowledgedResponse::readFrom);
    }

    public static class Request extends MasterNodeRequest {

        private final String followIndex;

        public Request(String followIndex) {
            this.followIndex = Objects.requireNonNull(followIndex, "followIndex");
        }

        public Request(StreamInput in) throws IOException {
            super(in);
            this.followIndex = in.readString();
        }

        public String getFollowIndex() {
            return followIndex;
        }

        @Override
        public ActionRequestValidationException validate() {
            return null;
        }

        @Override
        public void writeTo(final StreamOutput out) throws IOException {
            super.writeTo(out);
            out.writeString(followIndex);
        }
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy