> +   @Named("resourcegroup:create")
> +   @PUT
> +   @Path("resourcegroups/{name}")
> +   @Produces(MediaType.APPLICATION_JSON)
> +   @MapBinder(BindToJsonPayload.class)
> +   ResourceGroup create(@PathParam("name") String name, 
> @PayloadParam("location") String location, @PayloadParam("tags")Map<String, 
> String> tags);
> +
> +   @Named("resourcegroup:get")
> +   @GET
> +   @Path("resourcegroups/{name}")
> +   @Fallback(NullOnNotFoundOr404.class)
> +   @Nullable
> +   ResourceGroup get(@PathParam("name") String name);
> +
> +   @Named("resourcegroup:update")
> +   @PATCH

PATCH operations are not supported by the default jclouds http driver (the Java 
HTTPURLConnection). Consider adding a dependency on the [OkHttp 
driver](https://github.com/jclouds/jclouds/tree/master/drivers/okhttp) and 
declare the `OkHttpCommandExecutorServiceModule` in the api metadata's list of 
default modules.

---
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs/pull/250/files/f7cc1b437f11378e105bba552e3cfee9d7491872#r57578374

Reply via email to