Skip to content

Commit

Permalink
fix missing enum
Browse files Browse the repository at this point in the history
  • Loading branch information
arudell committed Jan 24, 2024
1 parent 4de467b commit 0de204a
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,8 @@ function Debug-SdnFabricInfrastructure {
[System.String]$NetworkController = $(HostName),

[Parameter(Mandatory = $false, ParameterSetName = 'Role')]
[SdnDiag.Common.Helper.SdnRoles[]]$Role = ('Gateway','LoadBalancerMux','NetworkController','Server'),
[ValidateSet('Gateway', 'NetworkController', 'Server', 'LoadBalancerMux')]
[String[]]$Role = ('Gateway','LoadBalancerMux','NetworkController','Server'),

[Parameter(Mandatory = $true, ParameterSetName = 'ComputerName')]
[System.String[]]$ComputerName,
Expand Down

0 comments on commit 0de204a

Please sign in to comment.