mirror of
https://github.com/benclaussen/NetboxPS.git
synced 2025-12-14 10:22:29 +00:00
10 lines
267 B
PowerShell
10 lines
267 B
PowerShell
|
|
function VerifyAPIConnectivity {
|
|||
|
|
[CmdletBinding()]
|
|||
|
|
param ()
|
|||
|
|
|
|||
|
|
$uriSegments = [System.Collections.ArrayList]::new(@('extras', '_choices'))
|
|||
|
|
|
|||
|
|
$uri = BuildNewURI -Segments $uriSegments -SkipConnectedCheck
|
|||
|
|
|
|||
|
|
InvokeNetboxRequest -URI $uri
|
|||
|
|
}
|