> + * Lists the details of all existing cookbooks in an environment. > + * > + * @param environmentName The environment name. > + * @return The details of all existing cookbooks in an environment. > + */ > + Iterable<? extends CookbookVersion> > listCookbookVersionsInEnvironment(String environmentName); > + > + /** > + * Lists the details of all existing cookbooks in an environment > + * limiting number of versions. > + * > + * @param environmentName The environment name. > + * @param numVersions Number of versions to limit. > + * @return The details of all existing cookbooks in environment. > + */ > + Iterable<? extends CookbookVersion> > listCookbookVersionsInEnvironment(String environmentName, String numVersions);
This can take a value of 'all'. Documented it now. --- Reply to this email directly or view it on GitHub: https://github.com/jclouds/jclouds-chef/pull/32/files#r7308777
