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