>     @QueryParams(keys = "objectMask", values = LIST_GUEST_MASK)
>     @Consumes(MediaType.APPLICATION_JSON)
>     @Fallback(Fallbacks.EmptySetOnNotFoundOr404.class)
>     Set<VirtualGuest> listVirtualGuests();
>  
>     /**
> -    *
> +    * Enables the creation of computing instances on an account.
> +    * @param virtualGuest this data type presents the structure in which all 
> virtual guests will be presented.
> +    * @return the new Virtual Guest
> +    * @see <a 
> href="http://sldn.softlayer.com/reference/services/SoftLayer_Virtual_Guest/createObject";
>  />
> +    */
> +   @Named("VirtualGuests:create")
> +   @POST
> +   @Path("SoftLayer_Virtual_Guest")
> +   @Consumes(MediaType.APPLICATION_JSON)
> +   @Produces(MediaType.APPLICATION_JSON)
> +   @Fallback(Fallbacks.NullOnNotFoundOr404.class)
> +   VirtualGuest createObject(@BinderParam(VirtualGuestToJson.class) 
> VirtualGuest virtualGuest);

Rename to `createVirtualGuest`?

---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds/pull/296/files#r10452480

Reply via email to