> + * @param id the id of the service to delete
> + * @return true if delete was successful, false if not
> + */
> + @Named("network:delete")
> + @DELETE
> + @Path("/{id}")
> + @Fallback(Fallbacks.FalseOnNotFoundOr404.class)
> + boolean delete(@PathParam("id") String id);
> +
> + /**
> + * Updates a service by applying JSONPatch internally.
> + * https://tools.ietf.org/html/rfc6902
> + * This requires providing your updateable JSON and the target JSON.
> + *
> + * @param service Source JSON
> + * @param createService Target JSON
Should be `updateService`
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs-openstack/pull/179/files#r26029920