From 383ca2b002359540f78f58db5bdac777784c239f Mon Sep 17 00:00:00 2001 From: Ben Claussen Date: Tue, 7 Nov 2023 09:38:19 -0500 Subject: [PATCH] Move limit/offset parameters to end of list --- Functions/Extras/Get-NetboxTag.ps1 | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Functions/Extras/Get-NetboxTag.ps1 b/Functions/Extras/Get-NetboxTag.ps1 index 7d6065a..fa4067f 100644 --- a/Functions/Extras/Get-NetboxTag.ps1 +++ b/Functions/Extras/Get-NetboxTag.ps1 @@ -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 )