Skip to content

Commit

Permalink
VM: Add support of 6.12 on ValidateSet
Browse files Browse the repository at this point in the history
  • Loading branch information
alagoutte committed Dec 8, 2023
1 parent 351d8e1 commit 90f0b56
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions PowerArubaCP/Public/VM.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ function Set-ArubaCPVmFirstBoot {
[Diagnostics.CodeAnalysis.SuppressMessageAttribute("PSUseShouldProcessForStateChangingFunctions", "")]
Param(
[Parameter (Mandatory = $true)]
[ValidateSet("6.8", "6.9", "6.10", "6.11")]
[ValidateSet("6.8", "6.9", "6.10", "6.11", "6.12")]
[version]$version,
[Parameter (Mandatory = $true)]
[ValidateSet("CLABV", "C1000V", "C2000V", "C3000V")]
Expand Down Expand Up @@ -311,7 +311,7 @@ function Set-ArubaCPVmSetup {
Param(
[string]$name_vm,
[Parameter (Mandatory = $true)]
[ValidateSet("6.8", "6.9", "6.10", "6.11")]
[ValidateSet("6.8", "6.9", "6.10", "6.11", "6.12")]
[version]$version,
[Parameter (Mandatory = $true)]
[string]$hostname,
Expand Down

0 comments on commit 90f0b56

Please sign in to comment.