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