> +     * @return list of drives or empty list if no drives are found
> +     */
> +    @GET
> +    @Path("/drives/")
> +    @ResponseParser(ParseDrivesList.class)
> +    List<Drive> listDrives();
> +
> +    /**
> +     * Gets the list of drives to which the authenticated user has access.
> +     *
> +     * @param fields A set of field names specifying the returned fields
> +     * @param limit number of drives to show
> +     * @return or empty set if no drives are found
> +     */
> +    @GET
> +    @Path("/drives/?fields={fields}&limit={limit}")

This should be just `@Path("/drives/")` and the method parameters should be 
annotated with `@QueryParam("name")`.

---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs/pull/12/files#r5278037

Reply via email to