> 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);
I used deleteVaultIfEmpty to be consistent with S3 naming. I have nothing against using deleteVault instead :) --- Reply to this email directly or view it on GitHub: https://github.com/jclouds/jclouds-labs-aws/pull/4/files#r13036142
