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