> + * @see <a > href="https://developers.google.com/compute/docs/reference/latest/forwardingRules"/> > + */ > +@SkipEncoding({'/', '='}) > +@RequestFilters(OAuthAuthenticator.class) > +public interface ForwardingRuleApi { > + > + /** > + * 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)
Move the consumes annotations to the interface declaration and remove them from each method. --- Reply to this email directly or view it on GitHub: https://github.com/jclouds/jclouds-labs-google/pull/22/files#r15394119
