Add prefix parameter

This commit is contained in:
Ben Claussen 2020-04-09 09:58:52 -04:00
parent 4fdc9bb833
commit 909cd73327

View file

@ -20,6 +20,12 @@ function Get-NetboxIPAMPrefix {
.DESCRIPTION .DESCRIPTION
A detailed description of the Get-NetboxIPAMPrefix function. A detailed description of the Get-NetboxIPAMPrefix function.
.PARAMETER Query
A description of the Query parameter.
.PARAMETER Id
A description of the Id parameter.
.PARAMETER Limit .PARAMETER Limit
A description of the Limit parameter. A description of the Limit parameter.
@ -32,12 +38,6 @@ function Get-NetboxIPAMPrefix {
.PARAMETER Is_Pool .PARAMETER Is_Pool
A description of the Is_Pool parameter. A description of the Is_Pool parameter.
.PARAMETER Id
A description of the Id parameter.
.PARAMETER Query
A description of the Query parameter.
.PARAMETER Within .PARAMETER Within
Should be a CIDR notation prefix such as '10.0.0.0/16' Should be a CIDR notation prefix such as '10.0.0.0/16'
@ -87,7 +87,7 @@ function Get-NetboxIPAMPrefix {
A description of the Raw parameter. A description of the Raw parameter.
.EXAMPLE .EXAMPLE
PS C:\> Get-NetboxIPAMPrefix PS C:\> Get-NetboxIPAMPrefix
.NOTES .NOTES
Additional information about the function. Additional information about the function.
@ -96,18 +96,16 @@ function Get-NetboxIPAMPrefix {
[CmdletBinding()] [CmdletBinding()]
param param
( (
[uint16]$Limit, [string]$Prefix,
[uint16]$Offset, [string]$Query,
[uint16[]]$Id,
[object]$Family, [object]$Family,
[boolean]$Is_Pool, [boolean]$Is_Pool,
[uint16[]]$Id,
[string]$Query,
[string]$Within, [string]$Within,
[string]$Within_Include, [string]$Within_Include,
@ -139,6 +137,10 @@ function Get-NetboxIPAMPrefix {
[uint16]$Role_Id, [uint16]$Role_Id,
[uint16]$Limit,
[uint16]$Offset,
[switch]$Raw [switch]$Raw
) )