mirror of
https://github.com/benclaussen/NetboxPS.git
synced 2025-12-13 18:02:29 +00:00
Move limit/offset parameters to end of list
This commit is contained in:
parent
985f920900
commit
383ca2b002
1 changed files with 4 additions and 4 deletions
|
|
@ -4,10 +4,6 @@ function Get-NetboxTag {
|
|||
[OutputType([pscustomobject])]
|
||||
param
|
||||
(
|
||||
[uint16]$Limit,
|
||||
|
||||
[uint16]$Offset,
|
||||
|
||||
[Parameter(ValueFromPipelineByPropertyName = $true)]
|
||||
[uint64]$Id,
|
||||
|
||||
|
|
@ -15,6 +11,10 @@ function Get-NetboxTag {
|
|||
|
||||
[string]$Slug,
|
||||
|
||||
[uint16]$Limit,
|
||||
|
||||
[uint16]$Offset,
|
||||
|
||||
[switch]$Raw
|
||||
)
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue