> + *
> + * @param bucketName
> + * Name of the bucket
> + *
> + * @return a {@link Bucket} resource
> + */
> +
> + @Named("Bucket:get")
> + @GET
> + @Consumes(MediaType.APPLICATION_JSON)
> + @Produces(MediaType.APPLICATION_JSON)
> + @Path("/b/{bucket}")
> + @OAuthScopes(STORAGE_READONLY_SCOPE)
> + @Fallback(NullOnNotFoundOr404.class)
> + @Nullable
> + Bucket getBuckets(@PathParam("bucket") String bucketName);
Should this be `getBucket`?
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs-google/pull/31/files#r14533008