> + * @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);
> +
> +}
Ok thanks!
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs-google/pull/56/files#r19058430