Merge pull request #3721 from boumenot/pr-vault-response

Azure: Ignore Created and Updated in KeyVault GetSecret Response
This commit is contained in:
Christopher Boumenot 2016-07-15 21:09:39 -07:00 committed by GitHub
commit 99fd1a122b
1 changed files with 0 additions and 7 deletions

View File

@ -27,13 +27,6 @@ type VaultClient struct {
type Secret struct {
ID *string `json:"id,omitempty"`
Value string `json:"value"`
Attributes SecretAttributes `json:"attributes"`
}
type SecretAttributes struct {
Enabled bool `json:"enabled"`
Created *string `json:"created"`
Updated *string `json:"updated"`
}
func (client *VaultClient) GetSecret(vaultName, secretName string) (*Secret, error) {