> +   @MapBinder(UpdateVolumeRequestBinder.class)
> +   @ResponseParser(VolumeApi.VolumeParser.class)
> +   @Produces("application/vnd.profitbricks.partial-properties+json")
> +   Volume updateVolume(@PayloadParam("volume") Volume.Request.UpdatePayload 
> payload);
> +   
> +   @Named("volume:delete")
> +   @DELETE
> +   @Path("/{volumeId}")
> +   @Fallback(Fallbacks.VoidOnNotFoundOr404.class)
> +   void deleteVolume(@PathParam("dataCenterId") String dataCenterId, 
> @PathParam("volumeId") String volumeId);
> +   
> +   @Named("volume:snapshot:create")
> +   @POST
> +   @MapBinder(CreateSnapshotRequestBinder.class)
> +   @ResponseParser(SnapshotApi.SnapshotParser.class)
> +   Snapshot createSnapshot(@PayloadParam("snapshot") 
> Volume.Request.CreateSnapshotPayload payload);

I can see your point, but then again a Volume is needed as well. Also it's 
under volumes at https://devops.profitbricks.com/api/rest/#volumes

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

Reply via email to