> URI createVault(String vaultName); > + > + /** > + * A DELETE request operation with a vault name to delete an existing > vault. The vault must be empty. > + * > + * @param vaultName > + * Name of the Vault being deleted. > + * @return False if the vault was not empty and therefore not deleted, > true otherwise. > + * @see <a > href="http://docs.aws.amazon.com/amazonglacier/latest/dev/api-vault-delete.html" > /> > + */ > + boolean deleteVaultIfEmpty(String vaultName);
Is there any reason not to simply call this `deleteVault`, in accordance with the name Amazon uses? --- Reply to this email directly or view it on GitHub: https://github.com/jclouds/jclouds-labs-aws/pull/4/files#r13034622
