> + @Path("/vips")
> + @SelectJson("vip")
> + VIP createVIP(@WrapWith("vip") VIP.CreateVIP vip);
> +
> + /**
> + * Update a VIP.
> + *
> + * @param id the id of the VIP to update.
> + * @param vip the VIP's attributes to update.
> + * @return a reference of the updated VIP.
> + */
> + @Named("vip:update")
> + @PUT
> + @Path("/vips/{id}")
> + @SelectJson("vip")
> + @Fallback(NullOnNotFoundOr404.class)
Let's keep things simple and leave it as-is :) I'll open a PR to address all
POST and PUT methods in all apis to fix the mentioned issue once this one has
been merged.
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs-openstack/pull/146/files#r17933842