> + FluentIterable<CDNContainer> list();
> +
> + /**
> + * Lists CDN containers, with the given options.
> + *
> + * @param options
> + * the options to control output.
> + *
> + * @return a list of CDN enabled containers ordered by name.
> + */
> + @Named("cdn:listWithOptions")
> + @GET
> + @QueryParams(keys = {"format", "enabled_only"}, values = {"json", "true"})
> + @Fallback(EmptyFluentIterableOnNotFoundOr404.class)
> + @Path("/")
> + FluentIterable<CDNContainer> listWithOptions(ListContainerOptions
> options);
Remove the `WithOptions` suffix.
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs-openstack/pull/79/files#r10013204