From 021a3904f2eb5ef908f2bd9b8697cae3961f10d8 Mon Sep 17 00:00:00 2001 From: Heath Stewart Date: Fri, 29 Jan 2021 16:35:02 -0800 Subject: [PATCH] Document that DeletedSecret.Value is always null Resolves #17741 To note, I also checked if/how this applies to DeletedKey and DeletedCertificate. When retrieved individually, the public key portion of the JWK is retrieved and both the SecretId and KeyId on DeletedCertificate are present as well. --- .../Azure.Security.KeyVault.Secrets/src/KeyVaultSecret.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/sdk/keyvault/Azure.Security.KeyVault.Secrets/src/KeyVaultSecret.cs b/sdk/keyvault/Azure.Security.KeyVault.Secrets/src/KeyVaultSecret.cs index cc12037c1571b..52126004c5c02 100644 --- a/sdk/keyvault/Azure.Security.KeyVault.Secrets/src/KeyVaultSecret.cs +++ b/sdk/keyvault/Azure.Security.KeyVault.Secrets/src/KeyVaultSecret.cs @@ -51,6 +51,7 @@ public KeyVaultSecret(string name, string value) /// /// Gets the value of the secret. /// + /// This property is always null for . public string Value { get; internal set; } internal virtual void ReadProperty(JsonProperty prop)