> +   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);

Also added for completeness sake. Will remove as it's not being used and is not 
necessary for jclouds compute abstraction.

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

Reply via email to