> + @GET
> + ListPage<BackendService> listPage(@QueryParam("pageToken") @Nullable
> String pageToken, ListOptions options);
> +
> + /** @see #listPage(String, ListOptions) */
> + @Named("BackendServices:list")
> + @GET
> + @Transform(BackendServicePages.class)
> + Iterator<ListPage<BackendService>> list();
> +
> + /** @see #listPage(String, ListOptions) */
> + @Named("BackendServices:list")
> + @GET
> + @Transform(BackendServicePages.class)
> + Iterator<ListPage<BackendService>> list(ListOptions options);
> +
> + static final class BackendServicePages extends
> BaseToIteratorOfListPage<BackendService, BackendServicePages> {
great. thanks!
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs-google/pull/97/files#r20598671