NetboxPS/Functions/Setup/Support/SetupNetboxConfigVariable.ps1
2024-09-01 00:32:18 +02:00

21 lines
No EOL
544 B
PowerShell

function SetupNetboxConfigVariable {
[CmdletBinding()]
param
(
[switch]$Overwrite
)
Write-Verbose "Checking for NetboxConfig hashtable"
if ((-not ($script:NetboxConfig)) -or $Overwrite) {
Write-Verbose "Creating NetboxConfig hashtable"
$script:NetboxConfig = @{
'Connected' = $false
'Choices' = @{
}
'APIDefinition' = $null
'ObjectTypes' = $null
}
}
Write-Verbose "NetboxConfig hashtable already exists"
}