> + @Fallback(Fallbacks.NullOnNotFoundOr404.class)
> + Hdd getHdd(@PathParam("serverId") String serverId, @PathParam("hddId")
> String hddId);
> +
> + @Named("server:update")
> + @PUT
> + @Path("/{serverId}/hardware/hdds/{hddId}")
> + @MapBinder(BindToJsonPayload.class)
> + @ResponseParser(ServerApi.ServerParser.class)
> + @Fallback(Fallbacks.NullOnNotFoundOr404.class)
> + Server updateHdd(@PathParam("serverId") String serverId,
> @PathParam("hddId") String hddId, @PayloadParam("size") double size);
> +
> + @Named("server:hdds/delete")
> + @DELETE
> + @Path("/{serverId}/hardware/hdds/{hddId}")
> + @ResponseParser(ServerApi.ServerParser.class)
> + @MapBinder(BindToJsonPayload.class)
There is no payload in this method. Remove this.
---
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs/pull/275/files/0767d011a984011133c9e34b3389b449ca0756cd#r68669468