> + *
> + * @param region the region to search in
> + * @param marker marks the beginning of the next list page
> + * @param listOptions listing options
> + * @return a page of the listPage
> + * @see org.jclouds.googlecomputeengine.options.ListOptions
> + * @see org.jclouds.googlecomputeengine.domain.ListPage
> + */
> + @Named("TargetPools:list")
> + @GET
> + @Consumes(MediaType.APPLICATION_JSON)
> + @Path("/regions/{region}/targetPools")
> + @OAuthScopes(COMPUTE_READONLY_SCOPE)
> + @ResponseParser(ParseTargetPools.class)
> + @Fallback(EmptyIterableWithMarkerOnNotFoundOr404.class)
> + ListPage<TargetPool> listAtMarkerInRegion(@PathParam("region") String
> region, @QueryParam("pageToken") @Nullable String marker, ListOptions
> listOptions);
See @nacx's comment from previous
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs-google/pull/22/files#r18015573