NetboxPS/NetboxPS.psm1

22 lines
742 B
PowerShell
Raw Normal View History

2018-05-11 15:54:43 -04:00
# Build a list of common paramters so we can omit them to build URI parameters
$script:CommonParameterNames = New-Object System.Collections.ArrayList
[void]$script:CommonParameterNames.AddRange(@([System.Management.Automation.PSCmdlet]::CommonParameters))
[void]$script:CommonParameterNames.AddRange(@([System.Management.Automation.PSCmdlet]::OptionalCommonParameters))
[void]$script:CommonParameterNames.Add('Raw')
SetupNetboxConfigVariable
2018-05-14 16:46:12 -04:00
#if (-not ([System.Management.Automation.PSTypeName]'NetboxVirtualMachineStatus').Type) {
# Add-Type -TypeDefinition @"
#public enum NetboxVirtualMachineStatus
#{
# Offline = 0,
# Active = 1,
# Staged = 3
#}
#"@
#}
2018-05-11 15:54:43 -04:00
Export-ModuleMember -Function *
#Export-ModuleMember -Function *-*