Powershell один из двух параметров обязателен - PullRequest
1 голос
/ 02 апреля 2020

Я написал сценарий powershell с некоторыми параметрами, но не могу понять, как получить такой синтаксис, как

script.ps1 [A | B] C [D]

script.ps1 [A | B] C EF

script.ps1 [A | B] C G

Цель:

  • A или B или оба они передаются
  • C всегда обязательно
  • если не передан другой параметр, используйте первый набор параметров -> D не является обязательным
  • если E передается F является обязательным и наоборот (второй набор параметров)
  • G передан (третий набор параметров)

Мой скрипт выглядит так

[CmdLetbinding(DefaultParameterSetName='ParamSet1')]
Param(
    [Parameter(Mandatory=$true)][String]$A,
    [Parameter(Mandatory=$false)][System.Net.IPAddress[]]$B,

    [Parameter(Mandatory=$true)][String]$C,

    [Parameter(Mandatory=$false, ParameterSetName="ParamSet1")][Int32]$D=120,

    [Parameter(Mandatory=$true, ParameterSetName="ParamSet2")][String]$E,
    [Parameter(Mandatory=$true, ParameterSetName="ParamSet2")][String]$F,

    [Parameter(Mandatory=$true, ParameterSetName="ParamSet3")][Switch]$G
)

Результат 'Get -Help script.ps1 '

Так что параметр C - G выглядит нормально. Но я не знаю, как написать условие для A и B.

У вас есть идеи?

1 Ответ

0 голосов
/ 02 апреля 2020

Используйте два набора параметров для $ A и $ B:

[CmdLetbinding(DefaultParameterSetName='ParamSet1')]
Param(
    [Parameter(Mandatory=$true,ParameterSetName='By_A')][String]$A,
    [Parameter(Mandatory=$true,ParameterSetName='By_B')][System.Net.IPAddress[]]$B,

# Rest of the Param
)
<#
 In the function's code, you can either test for whether $A and/or $B are null, or check $PSBoundParameters.ContainsKey('A'), or check $PSCmdlet.ParameterSetName to see whether it
is set to 'By_A' or 'By_B'
#>

Если вы не хотите использовать наборы параметров для A и B:

Param(
# Param block, specifying both A and B mandatory=$false
)
If($A -ne $null){
  # A is not null, like this you can check if B is null. If B is not null then you can throw an exception
}
If($B -be $null){
    # B is not null, like this you can check if A is null. If A is not null then you can throw an exception
}
...