Allow pipeline input for Address parameter in New-NetboxIPAMAddress

This commit is contained in:
Ben Claussen 2020-10-02 15:49:46 -04:00
parent a905a8d598
commit 9649237394

View file

@ -65,7 +65,8 @@ function New-NetboxIPAMAddress {
[OutputType([pscustomobject])]
param
(
[Parameter(Mandatory = $true)]
[Parameter(Mandatory = $true,
ValueFromPipelineByPropertyName = $true)]
[string]$Address,
[object]$Status = 'Active',