trevorflanagan commented on this pull request.
> + @Nullable @PayloadParam("disk") List<Disk> disks, @Nullable
> CreateServerOptions options);
+
+ @Named("server:delete")
+ @POST
+ @Path("/deleteServer")
+ @Produces(MediaType.APPLICATION_JSON)
+ @Fallback(Fallbacks.VoidOnNotFoundOr404.class)
+ @MapBinder(BindToJsonPayload.class)
+ void deleteServer(@PayloadParam("id") String id);
+
+ @Named("server:powerOff")
+ @POST
+ @Path("/powerOffServer")
+ @Produces(MediaType.APPLICATION_JSON)
+ @MapBinder(BindToJsonPayload.class)
+ @Fallback(Fallbacks.VoidOnNotFoundOr404.class)
What you are saying makes sense. I will remove this from the API definition.
--
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/400#discussion_r152008125