public void RefreshAllSecretVaults(SecretHelper helper)
 {
     foreach (var vault in SecretVaults.Values)
     {
         // update the vaults in our dictionary
         RefreshSecretVault(
             vault.Identifier,
             vault.Name,
             vault.FullName,
             helper);
     }
 }
 public abstract Task <bool> RefreshSecretVaultAsync(string vaultSecretIdentifier, string vaultName, string vaultFullName, SecretHelper helper);
 public abstract bool RefreshSecretVault(string vaultSecretIdentifier, string vaultName, string vaultFullName, SecretHelper helper);