> + @Path("/profiles/{profile}")
> + @Fallback(NullOnNotFoundOr404.class)
> + @ResponseParser(ParseRequestIdHeader.class)
> + String delete(@PathParam("profile") String profile);
> +
> + /**
> + * The Create Profile operation creates a new profile for a domain name,
> owned by the specified subscription.
> + *
> + * @param params profile parameters.
> + * @return request id.
> + */
> + @Named("CreateProfile")
> + @POST
> + @Path("/profiles")
> + @ResponseParser(ParseRequestIdHeader.class)
> + @Fallback(NullOnNotFoundOr404.class)
Same here. Remove this fallback.
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs/pull/151/files#r27517065