> +   void upload(@PathParam("id") String id, Payload imageData);
> +
> +   /**
> +    * Return image data for image with id
> +    */
> +   @GET
> +   @Path("/{id}/file")
> +   @Fallback(NullOnNotFoundOr404.class)
> +   InputStream download(@PathParam("id") String id);
> +
> +   /**
> +    * Adjust the metadata stored for an existing image
> +    * 
> +    * @return detailed metadata about the updated image
> +    */
> +   @PATCH

Yes you are right, I need this to attach the body. I had the method commented 
out and did not re-run live tests (only expected tests). I will rerun 
everything with the OkHttpDriver. Thanks!

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

Reply via email to