From b36632cb9a35a551fc55b96b3a88a8af63b54edb Mon Sep 17 00:00:00 2001 From: Ben Claussen Date: Fri, 2 Oct 2020 10:37:52 -0400 Subject: [PATCH] SkipConnectedCheck for Get-NetboxAPIDefinition --- Functions/Setup/Support/Get-NetboxAPIDefinition.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Functions/Setup/Support/Get-NetboxAPIDefinition.ps1 b/Functions/Setup/Support/Get-NetboxAPIDefinition.ps1 index b525a2e..3fb0215 100644 --- a/Functions/Setup/Support/Get-NetboxAPIDefinition.ps1 +++ b/Functions/Setup/Support/Get-NetboxAPIDefinition.ps1 @@ -23,7 +23,7 @@ function Get-NetboxAPIDefinition { $URIComponents = BuildURIComponents -URISegments $Segments -ParametersDictionary @{'format' = 'openapi'} - $URI = BuildNewURI -Segments $URIComponents.Segments -Parameters $URIComponents.Parameters + $URI = BuildNewURI -Segments $URIComponents.Segments -Parameters $URIComponents.Parameters -SkipConnectedCheck InvokeNetboxRequest -URI $URI -Timeout 10 }