mirror of
https://github.com/tigpas/NetboxPS.git
synced 2026-03-21 21:45:33 +00:00
11 lines
No EOL
255 B
PowerShell
11 lines
No EOL
255 B
PowerShell
|
|
function ThrowNetboxRESTError {
|
|
$uriSegments = [System.Collections.ArrayList]::new(@('fake', 'url'))
|
|
|
|
$URIParameters = @{
|
|
}
|
|
|
|
$uri = BuildNewURI -Segments $uriSegments -Parameters $URIParameters
|
|
|
|
InvokeNetboxRequest -URI $uri -Raw
|
|
} |