> + @Named("security-group-rule:list")
> + @GET
> + @ResponseParser(ParseRules.class)
> + @Transform(RulesToPagedIterable.class)
> + @Fallback(EmptyPagedIterableOnNotFoundOr404.class)
> + PagedIterable<Rule> listRules();
> +
> + /**
> + * @return all security groups rules currently defined in Neutron for the
> current tenant.
> + */
> + @Path("/security-group-rules")
> + @Named("security-group-rule:list")
> + @GET
> + @ResponseParser(ParseRules.class)
> + @Fallback(EmptyRulesFallback.class)
> + Rules listRules(PaginationOptions options);
Similar question to above - this is not returning a `PagedIterable`, I guess by
design? I might be missing a common jclouds pattern here - sorry if so...
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs-openstack/pull/132/files#r17027582