> + *
> + * @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("ForwardingRules:list")
> + @GET
> + @Consumes(MediaType.APPLICATION_JSON)
> + @Path("/regions/{region}/forwardingRules")
> + @OAuthScopes(COMPUTE_READONLY_SCOPE)
> + @ResponseParser(ParseForwardingRules.class)
> + @Fallback(EmptyIterableWithMarkerOnNotFoundOr404.class)
> + ListPage<ForwardingRule> listAtMarkerInRegion(@PathParam("region") String
> region, @QueryParam("pageToken") @Nullable String marker, ListOptions
> listOptions);
+1
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs-google/pull/22/files#r18015415