> + @Named("version")
> + @GET
> + @Path("/version")
> + Version getVersion();
> +
> + /**
> + * List all running containers
> + *
> + * @param options the options to list the containers (@see
> ListContainerOptions)
> + * @return a set of containers
> + */
> + @Named("containers:list")
> + @GET
> + @Path("/containers/json")
> + @Fallback(Fallbacks.EmptySetOnNotFoundOr404.class)
> + Set<Container> listContainers(ListContainerOptions... options);
The varargs pattern for options is no longer used. Add a `listContainers`
method that lists all them (with no options) and change this one to accept just
one options parameter.
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs/pull/57/files#r11265417