> + String delete(
> + @PathParam("service") String service,
> + @PathParam("thumbprintAlgorithm") String thumbprintAlgorithm,
> + @PathParam("thumbprintInHexadecimal") String
> thumbprintInHexadecimal);
> +
> + /**
> + * The Add Service Certificate asynchronous operation adds a certificate
> to a cloud service.
> + *
> + * @param service service name.
> + * @param params service certificate details to be sent as request body.
> + * @return request id.
> + */
> + @Named("AddServiceCertificate")
> + @POST
> + @Path("/{service}/certificates")
> + @Fallback(NullOnNotFoundOr404.class)
Remove the null fallback in all POST/PUT methods.
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs/pull/152/files#r27517655