> +
> + /**
> + * Returns the specified ForwardingRule resource.
> + *
> + * @param region the name of the region scoping this request.
> + * @param forwardingRule the name of the ForwardingRule resource to
> return.
> + * @return a ForwardingRule resource.
> + */
> + @Named("ForwardingRules:get")
> + @GET
> + @Consumes(MediaType.APPLICATION_JSON)
> + @Path("/regions/{region}/forwardingRules/{forwardingRule}")
> + @OAuthScopes(COMPUTE_READONLY_SCOPE)
> + @Fallback(NullOnNotFoundOr404.class)
> + @Nullable
> + ForwardingRule getInRegion(@PathParam("region") String region,
> @PathParam("forwardingRule") String forwardingRule);
A general comment: the approach that is used in other providers is to put the
"region" parameter at "delegate" level. You often see
`getInstanceApiForRegion`, etc. Could you move the region parameter to the
delegate to follow that approach?
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs-google/pull/22/files#r15394157