>
> /**
> * Pause a server.
> *
> * @param id id of the server
> */
> - Boolean pause(String id);
> + @Named("serverAdmin:pause")
> + @POST
> + @Produces(MediaType.APPLICATION_JSON)
> + @Payload("{\"pause\":null}")
> + @Fallback(FalseOnNotFoundOr404.class)
> + Boolean pause(@PathParam("id") String id);Do you want to make this a primitive as well? --- Reply to this email directly or view it on GitHub: https://github.com/jclouds/jclouds/pull/417/files#r14154607
