> + @Path("/operations")
> + ListPage<Operation> pageOfGlobalOperations(@Nullable
> @QueryParam("pageToken") String pageToken, ListOptions listOptions);
> +
> + /** @see #pageOfGlobalOperations(String, ListOptions) */
> + @Named("GlobalOperations:aggregatedList")
> + @GET
> + @Path("/operations")
> + @Transform(OperationPages.class)
> + Iterator<ListPage<Operation>> globalOperations();
> +
> + /** @see #pageOfGlobalOperations(String, ListOptions) */
> + @Named("GlobalOperations:aggregatedList")
> + @GET
> + @Path("/operations")
> + @Transform(OperationPages.class)
> + Iterator<ListPage<Operation>> globalOperations(ListOptions options);
note: we should go back into the operation api and rename the normal list to
listGlobal or the like to be consistent here.
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs-google/pull/92/files#r20270264