diff --git a/sdk/keyvault/Azure.Security.KeyVault.Certificates/src/ImportCertificateOptions.cs b/sdk/keyvault/Azure.Security.KeyVault.Certificates/src/ImportCertificateOptions.cs index b4da48e4fa1ef..0284726afa6f6 100644 --- a/sdk/keyvault/Azure.Security.KeyVault.Certificates/src/ImportCertificateOptions.cs +++ b/sdk/keyvault/Azure.Security.KeyVault.Certificates/src/ImportCertificateOptions.cs @@ -66,7 +66,8 @@ public ImportCertificateOptions(string name, byte[] certificate) public bool? Enabled { get; set; } /// - /// Gets the tags to be applied to the imported certificate. + /// Gets the tags to be applied to the imported certificate. Although this collection cannot be set, it can be modified + /// or initialized with a collection initializer. /// public IDictionary Tags => LazyInitializer.EnsureInitialized(ref _tags); diff --git a/sdk/keyvault/Azure.Security.KeyVault.Certificates/src/MergeCertificateOptions.cs b/sdk/keyvault/Azure.Security.KeyVault.Certificates/src/MergeCertificateOptions.cs index 036907d0a01ed..c006a221a209c 100644 --- a/sdk/keyvault/Azure.Security.KeyVault.Certificates/src/MergeCertificateOptions.cs +++ b/sdk/keyvault/Azure.Security.KeyVault.Certificates/src/MergeCertificateOptions.cs @@ -53,7 +53,8 @@ public MergeCertificateOptions(string name, IEnumerable x509Certificates public bool? Enabled { get; set; } /// - /// Gets the tags to be applied to the merged certificate. + /// Gets the tags to be applied to the merged certificate. Although this collection cannot be set, it can be modified + /// or initialized with a collection initializer. /// public IDictionary Tags => LazyInitializer.EnsureInitialized(ref _tags); diff --git a/sdk/keyvault/Azure.Security.KeyVault.Keys/src/CreateKeyOptions.cs b/sdk/keyvault/Azure.Security.KeyVault.Keys/src/CreateKeyOptions.cs index 341635e1af372..eb604ca03cd46 100644 --- a/sdk/keyvault/Azure.Security.KeyVault.Keys/src/CreateKeyOptions.cs +++ b/sdk/keyvault/Azure.Security.KeyVault.Keys/src/CreateKeyOptions.cs @@ -39,7 +39,8 @@ public CreateKeyOptions() public bool? Enabled { get; set; } /// - /// Gets a dictionary of tags with specific metadata about the key. + /// Gets a dictionary of tags with specific metadata about the key. Although this collection cannot be set, it can be modified + /// or initialized with a collection initializer. /// public IDictionary Tags { get; } = new Dictionary(); }