Fix incorrect parameter variable types

This commit is contained in:
sheffsix 2023-03-13 17:13:08 +00:00
parent ef23a42967
commit 3763d97d9a
2 changed files with 4 additions and 4 deletions

View file

@ -12,13 +12,13 @@ function Get-NetboxDCIMFrontPort
[Parameter(ValueFromPipelineByPropertyName = $true)]
[uint16]$Id,
[uint16]$Name,
[string]$Name,
[string]$Device,
[uint16]$Device_Id,
[uint16]$Type,
[string]$Type,
[switch]$Raw
)

View file

@ -12,13 +12,13 @@ function Get-NetboxDCIMRearPort
[Parameter(ValueFromPipelineByPropertyName = $true)]
[uint16]$Id,
[uint16]$Name,
[string]$Name,
[string]$Device,
[uint16]$Device_Id,
[uint16]$Type,
[string]$Type,
[switch]$Raw
)