mirror of
https://github.com/benclaussen/NetboxPS.git
synced 2025-12-13 18:02:29 +00:00
11 lines
329 B
PowerShell
11 lines
329 B
PowerShell
|
|
function Get-NetboxInvokeParams {
|
||
|
|
[CmdletBinding()]
|
||
|
|
param ()
|
||
|
|
|
||
|
|
Write-Verbose "Getting Netbox InvokeParams"
|
||
|
|
if ($null -eq $script:NetboxConfig.InvokeParams) {
|
||
|
|
throw "Netbox Invoke Params is not set! You may set it with Set-NetboxInvokeParams -InvokeParams ..."
|
||
|
|
}
|
||
|
|
|
||
|
|
$script:NetboxConfig.InvokeParams
|
||
|
|
}
|