Skip to content

Commit 71b9ae2

Browse files
committed
Fixed typo in member variable name in SecretAttribute
1 parent 37a9632 commit 71b9ae2

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/ResourceManager/KeyVault/Commands.KeyVault/Models/KeyVaultDataServiceClient.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -273,7 +273,7 @@ public Secret SetSecret(string vaultName, string secretName, SecureString secret
273273
try
274274
{
275275
secret = this.keyVaultClient.SetSecretAsync(vaultAddress, secretName, value,
276-
secretAttributes.TagsDirectionary, secretAttributes.ContentType, attributes).GetAwaiter().GetResult();
276+
secretAttributes.TagsDictionary, secretAttributes.ContentType, attributes).GetAwaiter().GetResult();
277277
}
278278
catch (Exception ex)
279279
{
@@ -300,7 +300,7 @@ public Secret UpdateSecret(string vaultName, string secretName, string secretVer
300300
try
301301
{
302302
secret = this.keyVaultClient.UpdateSecretAsync(secretIdentifier.Identifier,
303-
secretAttributes.ContentType, attributes, secretAttributes.TagsDirectionary).GetAwaiter().GetResult();
303+
secretAttributes.ContentType, attributes, secretAttributes.TagsDictionary).GetAwaiter().GetResult();
304304
}
305305
catch (Exception ex)
306306
{

src/ResourceManager/KeyVault/Commands.KeyVault/Models/SecretAttributes.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ public string TagsTable
6969
}
7070
}
7171

72-
public Dictionary<string, string> TagsDirectionary
72+
public Dictionary<string, string> TagsDictionary
7373
{
7474
get
7575
{

0 commit comments

Comments
 (0)