Move limit/offset parameters to end of list

This commit is contained in:
Ben Claussen 2023-11-07 09:38:19 -05:00
parent 985f920900
commit 383ca2b002

View file

@ -4,10 +4,6 @@ function Get-NetboxTag {
[OutputType([pscustomobject])] [OutputType([pscustomobject])]
param param
( (
[uint16]$Limit,
[uint16]$Offset,
[Parameter(ValueFromPipelineByPropertyName = $true)] [Parameter(ValueFromPipelineByPropertyName = $true)]
[uint64]$Id, [uint64]$Id,
@ -15,6 +11,10 @@ function Get-NetboxTag {
[string]$Slug, [string]$Slug,
[uint16]$Limit,
[uint16]$Offset,
[switch]$Raw [switch]$Raw
) )