> +       * @see DiskTypeApi#listAtMarkerInZone(String, String, 
> org.jclouds.googlecomputeengine.options.ListOptions)
> +       *
> +       * @param zone the zone to list in
> +       * @return a Paged, Fluent Iterable that is able to fetch additional 
> pages when required
> +       * @see PagedIterable
> +       */
> +      @Named("DiskTypes:list")
> +      @GET
> +      @Path("/zones/{zone}/diskTypes")
> +      @OAuthScopes(COMPUTE_READONLY_SCOPE)
> +      @ResponseParser(ParseDiskTypes.class)
> +      @Transform(ParseDiskTypes.ToPagedIterable.class)
> +      @Fallback(EmptyPagedIterableOnNotFoundOr404.class)
> +      PagedIterable<DiskType> listInZone(@PathParam("zone") String zone, 
> ListOptions listOptions);
> +
> +}

BTW, it should be as easy as adding the pageToken (or marker) parameter in the 
`ListOptions`, and all the redundant methods would be really redundant and we 
should be able to remove them.

---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs-google/pull/56/files#r18989742

Reply via email to