mirror of
https://github.com/benclaussen/NetboxPS.git
synced 2025-12-14 02:12:28 +00:00
23 lines
648 B
PowerShell
23 lines
648 B
PowerShell
<#
|
|
.NOTES
|
|
===========================================================================
|
|
Created with: SAPIEN Technologies, Inc., PowerShell Studio 2018 v5.5.148
|
|
Created on: 2/28/2018 3:43 PM
|
|
Created by: Ben Claussen
|
|
Organization: NEOnet
|
|
Filename: Extras.ps1
|
|
===========================================================================
|
|
.DESCRIPTION
|
|
Extras objects functions
|
|
#>
|
|
|
|
function Get-NetboxExtrasChoices {
|
|
[CmdletBinding()]
|
|
param ()
|
|
|
|
$uriSegments = [System.Collections.ArrayList]::new(@('extras', '_choices'))
|
|
|
|
$uri = BuildNewURI -Segments $uriSegments
|
|
|
|
InvokeNetboxRequest -URI $uri
|
|
}
|