> +   @Fallback(NullOnNotFoundOr404.class)
> +   boolean checkDNSPrefixAvailability(@PathParam("name") String name);
> +
> +   /**
> +    * The Create Definition operation creates a new definition for a 
> specified profile. This definition will be assigned
> +    * a version number by the service. For more information about creating a 
> profile, see Create Profile.
> +    *
> +    * @param name profile name.
> +    * @param params profile definition details to be sent as request body.
> +    * @return request id.
> +    */
> +   @Named("CreateProfileDefinition")
> +   @POST
> +   @Path("/profiles/{name}/definitions")
> +   @ResponseParser(ParseRequestIdHeader.class)
> +   @Fallback(NullOnNotFoundOr404.class)

POST and PUT operations should not use these fallbacks. Remove it.

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

Reply via email to