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

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

The newest version!
package io.rancher.service;

import io.rancher.base.Filters;
import io.rancher.base.TypeCollection;
import io.rancher.type.Label;

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 LaunchConfigInstanceLabelsService {

    @GET("launchConfigs/{projectId}/label")
    Call> list(@Path("projectId") String projectId);

    @GET("launchConfigs/{projectId}/label")
    Call> list(@Path("projectId") String projectId, @QueryMap Filters filters);

    @GET("launchConfigs/{projectId}/label/{id}")
    Call




© 2015 - 2024 Weber Informatics LLC | Privacy Policy