Skip to content

Commit

Permalink
Merge pull request #77 from alagoutte/vm-6.12
Browse files Browse the repository at this point in the history
VM: Add support of 6.12 on ValidateSet
  • Loading branch information
alagoutte authored Dec 8, 2023
2 parents 5e06f5b + 90f0b56 commit 12f7e02
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 12f7e02

Please sign in to comment.