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