> + @Transform(ParseTargetPools.ToPagedIterable.class)
> + @Fallback(EmptyPagedIterableOnNotFoundOr404.class)
> + PagedIterable<TargetPool> listInRegion(@PathParam("region") String
> region);
> +
> + @Named("TargetPools:list")
> + @GET
> + @Consumes(MediaType.APPLICATION_JSON)
> + @Path("/regions/{region}/targetPools")
> + @OAuthScopes(COMPUTE_READONLY_SCOPE)
> + @ResponseParser(ParseTargetPools.class)
> + @Transform(ParseTargetPools.ToPagedIterable.class)
> + @Fallback(EmptyPagedIterableOnNotFoundOr404.class)
> + PagedIterable<TargetPool> listInRegion(@PathParam("region") String
> region, ListOptions options);
> +
> + /**
> + * Adds instance url to targetPool.
The parameters only allow you to add a _name_, not a URL?
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs-google/pull/22/files#r18015591