io.rancher.service.SnapshotService Maven / Gradle / Ivy
The newest version!
package io.rancher.service;
import io.rancher.base.Filters;
import io.rancher.base.TypeCollection;
import io.rancher.type.Snapshot;
import io.rancher.type.Backup;
import io.rancher.type.SnapshotBackupInput;
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 SnapshotService {
@GET("snapshot")
Call> list();
@GET("snapshot")
Call> list(@QueryMap Filters filters);
@GET("snapshot/{id}")
Call get(@Path("id") String id);
@POST("snapshot")
Call create(@Body Snapshot snapshot);
@PUT("snapshot/{id}")
Call update(@Path("id") String id, @Body Snapshot snapshot);
@DELETE("snapshot/{id}")
Call delete(@Path("id") String id);
@POST("snapshot/{id}?action=backup")
Call backup(@Path("id") String id, @Body SnapshotBackupInput snapshotBackupInput);
@POST("snapshot/{id}?action=remove")
Call remove(@Path("id") String id);
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy