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

org.graylog2.restroutes.generated.IndexRangesResource Maven / Gradle / Ivy

The newest version!

package org.graylog2.restroutes.generated;

import org.graylog2.restroutes.PathMethod;

public class IndexRangesResource {


    public PathMethod rebuildIndex(String index) {
        return new PathMethod("POST", "/system/indices/ranges/"+com.google.common.net.UrlEscapers.urlPathSegmentEscaper().escape(index)+"/rebuild");
    }

    public PathMethod rebuild() {
        return new PathMethod("POST", "/system/indices/ranges/rebuild");
    }

    public PathMethod list() {
        return new PathMethod("GET", "/system/indices/ranges");
    }

    public PathMethod show(String index) {
        return new PathMethod("GET", "/system/indices/ranges/"+com.google.common.net.UrlEscapers.urlPathSegmentEscaper().escape(index)+"");
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy