Skip to content

Commit 5b65ad9

Browse files
committed
Merge branch 'main' of https://github.com/Azure/azure-powershell into mergestorage
2 parents d17e4a6 + cff0f2a commit 5b65ad9

File tree

877 files changed

+168455
-40
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

877 files changed

+168455
-40
lines changed

.azure-pipelines/code-sign.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ jobs:
2020
git remote set-url origin https://azure-powershell-bot:[email protected]/Azure/azure-powershell.git;
2121
git fetch origin
2222
git checkout -b ${{ parameters.OOBBranch }} origin/${{ parameters.OOBBranch }}
23+
condition: and(succeeded(), ne('${{ parameters.OOBBranch }}', 'none'))
2324
- pwsh: 'Install-Module platyPS -Force -Confirm:$false -Scope CurrentUser'
2425
displayName: 'Install platyPS'
2526

documentation/azure-powershell-modules.md

Lines changed: 28 additions & 0 deletions
Large diffs are not rendered by default.
File renamed without changes.
File renamed without changes.
File renamed without changes.

src/KeyVault/KeyVault/ChangeLog.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
- Additional information about change #1
1919
-->
2020
## Upcoming Release
21+
* Removed maximum number for `IpAddressRange` and `VirtualNetworkResourceId` in `*-AzKeyVaultNetworkRuleSet*` from client side. [#22137]
2122

2223
## Version 4.10.0
2324
* Added breaking change announcement for parameter `SoftDeleteRetentionInDays` in `New-AzKeyVaultManagedHsm`. The parameter `SoftDeleteRetentionInDays` is becoming mandatory

src/KeyVault/KeyVault/Commands/VirtualNetworkRuleSet/KeyVaultNetworkRuleSetBase.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,15 +28,13 @@ public class KeyVaultNetworkRuleSetBase : KeyVaultManagementCmdletBase
2828
/// </summary>
2929
[Parameter(Mandatory = false,
3030
HelpMessage = "Specifies allowed network IP address range of network rule.")]
31-
[ValidateCount(0, 127)]
3231
public string[] IpAddressRange { get; set; }
3332

3433
/// <summary>
3534
/// Virtual network resource IDs for network rule set
3635
/// </summary>
3736
[Parameter(Mandatory = false,
3837
HelpMessage = "Specifies allowed virtual network resource identifier of network rule.")]
39-
[ValidateCount(0, 127)]
4038
public string[] VirtualNetworkResourceId { get; set; }
4139

4240
/// <summary>

src/KeyVault/KeyVault/Commands/VirtualNetworkRuleSet/NewAzureKeyVaultNetworkRuleSetObject.cs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,13 +40,11 @@ public class NewAzureKeyVaultNetworkRuleSetObject : KeyVaultManagementCmdletBase
4040

4141
[Parameter(Mandatory = false,
4242
HelpMessage = "Specifies allowed network IP address range of network rule.")]
43-
[ValidateCount(0, 127)]
4443
[ValidateNotNull]
4544
public string[] IpAddressRange { get; set; }
4645

4746
[Parameter(Mandatory = false,
4847
HelpMessage = "Specifies allowed virtual network resource identifier of network rule.")]
49-
[ValidateCount(0, 127)]
5048
[ValidateNotNull]
5149
public string[] VirtualNetworkResourceId { get; set; }
5250

@@ -62,4 +60,4 @@ public override void ExecuteCmdlet()
6260
));
6361
}
6462
}
65-
}
63+
}
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)