> + @Fallback(NullOnNotFoundOr404.class)
> + @Nullable
> + Service get(@PathParam("id") String id);
> +
> + /**
> + * Creates a service.
> + *
> + * @param options the options to create the service with
> + * @return a URI to the created service
> + */
> + @Named("service:create")
> + @POST
> + @ResponseParser(ParseServiceURIFromHeaders.class)
> + @Fallback(NullOnNotFoundOr404.class)
> + @Nullable
> + URI create(CreateService options);
`options` is an odd name for this param. In `update()` it's called
`updateService`. I suggest `createService `.
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs-openstack/pull/179/files#r26030007