> + @MapBinder(BindToJsonPayload.class)
> + Operation create(@PayloadParam("name") String httpHealthCheckName);
> +
> + /**
> + * Creates a HttpHealthCheck resource in the specified project and region
> using the data included in the request.
> + *
> + * @param httpHealthCheckName the name of the forwarding rule.
> + * @return an Operation resource. To check on the status of an operation,
> poll the Operations resource returned to
> + * you, and look for the status field.
> + */
> + @Named("HttpHealthChecks:insert")
> + @POST
> + @Consumes(MediaType.APPLICATION_JSON)
> + @Produces(MediaType.APPLICATION_JSON)
> + @Path("/global/httpHealthChecks")
> + @OAuthScopes({COMPUTE_SCOPE})
Here and elsewhere: can just be `@OAuthScopes(COMPUTE_SCOPE)`
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs-google/pull/22/files#r18015528