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

io.rancher.service.StackService Maven / Gradle / Ivy

The newest version!
package io.rancher.service;

import io.rancher.base.Filters;
import io.rancher.base.TypeCollection;
import io.rancher.type.Stack;
import io.rancher.type.StackUpgrade;
import io.rancher.type.AddOutputsInput;
import io.rancher.type.ComposeConfigInput;
import io.rancher.type.ComposeConfig;

import retrofit2.Call;
import retrofit2.Response;
import retrofit2.http.Body;
import retrofit2.http.DELETE;
import retrofit2.http.GET;
import retrofit2.http.POST;
import retrofit2.http.PUT;
import retrofit2.http.Path;
import retrofit2.http.QueryMap;

public interface StackService {

    @GET("stack")
    Call> list();

    @GET("stack")
    Call> list(@QueryMap Filters filters);

    @GET("stack/{id}")
    Call get(@Path("id") String id);

    @POST("stack")
    Call create(@Body Stack stack);

    @PUT("stack/{id}")
    Call update(@Path("id") String id, @Body Stack stack);

    @DELETE("stack/{id}")
    Call delete(@Path("id") String id);
    
    @POST("stack/{id}?action=activateservices")
    Call activateservices(@Path("id") String id);
    
    @POST("stack/{id}?action=addoutputs")
    Call addoutputs(@Path("id") String id, @Body AddOutputsInput addOutputsInput);
    
    @POST("stack/{id}?action=cancelupgrade")
    Call cancelupgrade(@Path("id") String id);
    
    @POST("stack/{id}?action=deactivateservices")
    Call deactivateservices(@Path("id") String id);
    
    @POST("stack/{id}?action=error")
    Call error(@Path("id") String id);
    
    @POST("stack/{id}?action=exportconfig")
    Call exportconfig(@Path("id") String id, @Body ComposeConfigInput composeConfigInput);
    
    @POST("stack/{id}?action=finishupgrade")
    Call finishupgrade(@Path("id") String id);
    
    @POST("stack/{id}?action=remove")
    Call remove(@Path("id") String id);
    
    @POST("stack/{id}?action=rollback")
    Call rollback(@Path("id") String id);
    
    @POST("stack/{id}?action=upgrade")
    Call upgrade(@Path("id") String id, @Body StackUpgrade stackUpgrade);
    
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy