> +    * @param fingerprint The current fingerprint for the tags
> +    * @return an Operations resource. To check on the status of an 
> operation, poll the Operations resource returned
> +    *         to you, and look for the status field.
> +    */
> +   @Named("Instances:setTags")
> +   @POST
> +   @Path("/zones/{zone}/instances/{instance}/setTags")
> +   @OAuthScopes(COMPUTE_SCOPE)
> +   @Consumes(MediaType.APPLICATION_JSON)
> +   @Produces(MediaType.APPLICATION_JSON)
> +   @Fallback(NullOnNotFoundOr404.class)
> +   @MapBinder(BindToJsonPayload.class)
> +   @Nullable
> +   Operation setTagsInZone(@PathParam("zone") String zone,
> +                           @PathParam("instance") String instanceName,
> +                           @PayloadParam("items") Set<String> items,

If their called `items` here, perhaps call the field `items` in the `Tags` 
class also?

---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs/pull/16/files#r5362806

Reply via email to