> +   void deleteContainer(@PathParam("id") String id);
> +   
> +   @Named("containers:stop")
> +   @GET
> +   @Path("/api/containers/{id}/stop")
> +   void stopContainer(@PathParam("id") String id);
> +   
> +   @Named("containers:restart")
> +   @GET
> +   @Path("/api/containers/{id}/restart")
> +   void restartContainer(@PathParam("id") String id);
> +   
> +   @Named("containers:scale")
> +   @GET
> +   @Path("/api/containers/{id}/scale?count={count}")
> +   void scaleContainer(@PathParam("id") String id, @PathParam("count") int 
> count);

Prefer using `@QueryParam("count")` and remove it from the path, if possible.

---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs/pull/116/files#r21863002

Reply via email to