> + @GET
> + @Path("/api/containers")
> + @Fallback(EmptyListOnNotFoundOr404.class)
> + List<ContainerInfo> listContainers();
> +
> + @Named("containers:info")
> + @GET
> + @Path("/api/containers/{id}")
> + @Fallback(NullOn500.class)
> + ContainerInfo getContainer(@PathParam("id") String id);
> +
> + @Named("containers:logs")
> + @GET
> + @Path("/api/containers/{id}/logs")
> + @Fallback(NullOn500.class)
> + String getContainerLogs(@PathParam("id") String id);
This was added for completeness sake. Until it makes sense to have it I think
removing this call would make the most sense.
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs/pull/116/files#r22188964