You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: sdk/keyvault/Azure.Security.KeyVault.Keys/src/KeyClient.cs
+28-28Lines changed: 28 additions & 28 deletions
Original file line number
Diff line number
Diff line change
@@ -1385,26 +1385,26 @@ public virtual CryptographyClient GetCryptographyClient(string keyName, string k
1385
1385
/// <summary>
1386
1386
/// Gets the <see cref="KeyRotationPolicy"/> for the specified key in Key Vault.
1387
1387
/// </summary>
1388
-
/// <param name="name">The name of the key.</param>
1388
+
/// <param name="keyName">The name of the key.</param>
1389
1389
/// <param name="cancellationToken">A <see cref="CancellationToken"/> controlling the request lifetime.</param>
1390
1390
/// <remarks>
1391
1391
/// This operation requires the keys/get permission.
1392
1392
/// </remarks>
1393
1393
/// <returns>A <see cref="KeyRotationPolicy"/> for the specified key.</returns>
1394
-
/// <exception cref="ArgumentException"><paramref name="name"/> contains an empty string.</exception>
1395
-
/// <exception cref="ArgumentNullException"><paramref name="name"/> is null.</exception>
1394
+
/// <exception cref="ArgumentException"><paramref name="keyName"/> contains an empty string.</exception>
1395
+
/// <exception cref="ArgumentNullException"><paramref name="keyName"/> is null.</exception>
1396
1396
/// <exception cref="RequestFailedException">The server returned an error. See <see cref="Exception.Message"/> for details returned from the server.</exception>
@@ -1416,26 +1416,26 @@ public virtual Response<KeyRotationPolicy> GetKeyRotationPolicy(string name, Can
1416
1416
/// <summary>
1417
1417
/// Gets the <see cref="KeyRotationPolicy"/> for the specified key in Key Vault.
1418
1418
/// </summary>
1419
-
/// <param name="name">The name of the key.</param>
1419
+
/// <param name="keyName">The name of the key.</param>
1420
1420
/// <param name="cancellationToken">A <see cref="CancellationToken"/> controlling the request lifetime.</param>
1421
1421
/// <remarks>
1422
1422
/// This operation requires the keys/get permission.
1423
1423
/// </remarks>
1424
1424
/// <returns>A <see cref="KeyRotationPolicy"/> for the specified key.</returns>
1425
-
/// <exception cref="ArgumentException"><paramref name="name"/> contains an empty string.</exception>
1426
-
/// <exception cref="ArgumentNullException"><paramref name="name"/> is null.</exception>
1425
+
/// <exception cref="ArgumentException"><paramref name="keyName"/> contains an empty string.</exception>
1426
+
/// <exception cref="ArgumentNullException"><paramref name="keyName"/> is null.</exception>
1427
1427
/// <exception cref="RequestFailedException">The server returned an error. See <see cref="Exception.Message"/> for details returned from the server.</exception>
@@ -1509,28 +1509,28 @@ public virtual async Task<Response<KeyVaultKey>> RotateKeyAsync(string name, Can
1509
1509
/// <summary>
1510
1510
/// Updates the <see cref="KeyRotationPolicy"/> for the specified key in Key Vault.
1511
1511
/// </summary>
1512
-
/// <param name="name">The name of the key.</param>
1512
+
/// <param name="keyName">The name of the key.</param>
1513
1513
/// <param name="policy">The <see cref="KeyRotationPolicy"/> to update.</param>
1514
1514
/// <param name="cancellationToken">A <see cref="CancellationToken"/> controlling the request lifetime.</param>
1515
1515
/// <remarks>
1516
1516
/// This operation requires the keys/update permission.
1517
1517
/// </remarks>
1518
1518
/// <returns>A <see cref="KeyRotationPolicy"/> for the specified key.</returns>
1519
-
/// <exception cref="ArgumentException"><paramref name="name"/> contains an empty string.</exception>
1520
-
/// <exception cref="ArgumentNullException"><paramref name="name"/> or <paramref name="policy"/> is null.</exception>
1519
+
/// <exception cref="ArgumentException"><paramref name="keyName"/> contains an empty string.</exception>
1520
+
/// <exception cref="ArgumentNullException"><paramref name="keyName"/> or <paramref name="policy"/> is null.</exception>
1521
1521
/// <exception cref="RequestFailedException">The server returned an error. See <see cref="Exception.Message"/> for details returned from the server.</exception>
@@ -1542,28 +1542,28 @@ public virtual Response<KeyRotationPolicy> UpdateKeyRotationPolicy(string name,
1542
1542
/// <summary>
1543
1543
/// Updates the <see cref="KeyRotationPolicy"/> for the specified key in Key Vault.
1544
1544
/// </summary>
1545
-
/// <param name="name">The name of the key.</param>
1545
+
/// <param name="keyName">The name of the key.</param>
1546
1546
/// <param name="policy">The <see cref="KeyRotationPolicy"/> to update.</param>
1547
1547
/// <param name="cancellationToken">A <see cref="CancellationToken"/> controlling the request lifetime.</param>
1548
1548
/// <remarks>
1549
1549
/// This operation requires the keys/update permission.
1550
1550
/// </remarks>
1551
1551
/// <returns>A <see cref="KeyRotationPolicy"/> for the specified key.</returns>
1552
-
/// <exception cref="ArgumentException"><paramref name="name"/> contains an empty string.</exception>
1553
-
/// <exception cref="ArgumentNullException"><paramref name="name"/> or <paramref name="policy"/> is null.</exception>
1552
+
/// <exception cref="ArgumentException"><paramref name="keyName"/> contains an empty string.</exception>
1553
+
/// <exception cref="ArgumentNullException"><paramref name="keyName"/> or <paramref name="policy"/> is null.</exception>
1554
1554
/// <exception cref="RequestFailedException">The server returned an error. See <see cref="Exception.Message"/> for details returned from the server.</exception>
0 commit comments