> +import org.jclouds.rest.annotations.RequestFilters; > +import org.jclouds.rest.annotations.SkipEncoding; > +import org.jclouds.rest.binders.BindToJsonPayload; > + > +/** > + * Provides access to Bucket entities via their REST API. > + * > + * @see <a href = " > https://developers.google.com/storage/docs/json_api/v1/buckets"/> > + */ > + > +@SkipEncoding({ '/', '=' }) > +@RequestFilters(OAuthAuthenticator.class) > +public interface BucketApi { > + > + /** > + * Returns metadata for the specified bucket.
Hm...so "Bucket" is actually metadata? Shouldn't this be "Get the bucket of the specified name" or "Get the metadata for the bucket of the specified name" or so? --- Reply to this email directly or view it on GitHub: https://github.com/jclouds/jclouds-labs-google/pull/31/files#r14532980
