> + * In the request body, supply the relevant portions of a
> bucket resource
> + * @param options
> + * Supply {@link UpdateBucketOptions} with optional query
> parameters
> + *
> + * @return If successful, this method returns a {@link Bucket} resource
> in the response body
> + */
> +
> + @Named("Bucket:patch")
> + @PATCH
> + @Consumes(MediaType.APPLICATION_JSON)
> + @Produces(MediaType.APPLICATION_JSON)
> + @Path("/b/{bucket}")
> + @OAuthScopes(STORAGE_FULLCONTROL_SCOPE)
> + @Fallback(NullOnNotFoundOr404.class)
> + Bucket patchBuckets(@PathParam("bucket") String bucketName,
> + @BinderParam(BindToJsonPayload.class) BucketTemplate
> bucketTemplate, UpdateBucketOptions options);
See all comments above
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs-google/pull/31/files#r14533292