> + @DELETE
> + @Path("/{serverId}")
> + @Fallback(Fallbacks.VoidOnNotFoundOr404.class)
> + void deleteServer(@PathParam("dataCenterId") String dataCenterId,
> @PathParam("serverId") String serverId);
> +
> + @Named("server:volume:list")
> + @GET
> + @Path("/{serverId}/volumes")
> + @Fallback(EmptyListOnNotFoundOr404.class)
> + @SelectJson("items")
> + List<Volume> listAttachedVolumes(@PathParam("dataCenterId") String
> dataCenterId, @PathParam("serverId") String serverId);
> +
> + @Named("server:volume:attach")
> + @POST
> + @Path("/{serverId}/volumes")
> + @Fallback(Fallbacks.NullOnNotFoundOr404.class)
Remove 404 fallback for POST/PUT APIs.
([discussion](https://github.com/jclouds/jclouds-labs-openstack/pull/135/files#r16700137))
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs/pull/227/files#r51093422