From 557cfed8efa1d30989e48b24ba207c7c10e2ef55 Mon Sep 17 00:00:00 2001 From: Heath Stewart Date: Mon, 1 Feb 2021 16:07:35 -0800 Subject: [PATCH] Document that DeletedSecret.Value is always null (#18300) 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 cc12037c1571..52126004c5c0 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)