2022-12-06 13:35:47 -05:00
|
|
|
|
|
2021-07-23 16:24:27 +02:00
|
|
|
|
# Build a list of common parameters so we can omit them to build URI parameters
|
2020-04-09 09:57:20 -04:00
|
|
|
|
$script:CommonParameterNames = New-Object System.Collections.ArrayList
|
|
|
|
|
|
[void]$script:CommonParameterNames.AddRange(@([System.Management.Automation.PSCmdlet]::CommonParameters))
|
|
|
|
|
|
[void]$script:CommonParameterNames.AddRange(@([System.Management.Automation.PSCmdlet]::OptionalCommonParameters))
|
|
|
|
|
|
[void]$script:CommonParameterNames.Add('Raw')
|
2018-05-11 15:54:43 -04:00
|
|
|
|
|
2020-04-09 09:57:20 -04:00
|
|
|
|
SetupNetboxConfigVariable
|