> +   @ResponseParser(ParseGlobalOperations.class)
> +   @Transform(ParseGlobalOperations.ToPagedIterable.class)
> +   @Fallback(EmptyPagedIterableOnNotFoundOr404.class)
> +   PagedIterable<Operation> list(ListOptions listOptions);
> +
> +   /**
> +    * @see 
> org.jclouds.googlecomputeengine.features.GlobalOperationApi#aggregatedListAtMarker(String,
>  org.jclouds.googlecomputeengine.options.ListOptions)
> +    */
> +   @Named("GlobalOperations:aggregatedList")
> +   @GET
> +   @Path("/aggregated/operations")
> +   @OAuthScopes(COMPUTE_READONLY_SCOPE)
> +   @Consumes(MediaType.APPLICATION_JSON)
> +   @ResponseParser(ParseGlobalOperations.class)
> +   @Fallback(EmptyIterableWithMarkerOnNotFoundOr404.class)
> +   ListPage<Operation> aggregatedListFirstPage();

Would you ever need to call `aggregatedListFirstPage(ListOptions)` or 
`listFirstPage(ListOptions)`? If so, how would you do that?

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

Reply via email to