Address(IPAM): Add dns_name parameter to Add and Set

This commit is contained in:
Alexis La Goutte 2021-03-29 16:03:00 +02:00
parent eea2eebc82
commit 7a8bdff480
2 changed files with 7 additions and 0 deletions

View file

@ -47,6 +47,9 @@ function New-NetboxIPAMAddress {
.PARAMETER Description
Description of IP address
.PARAMETER Dns_name
DNS Name of IP address (example : netbox.example.com)
.PARAMETER Force
Do not prompt for confirmation to create IP.
@ -85,6 +88,8 @@ function New-NetboxIPAMAddress {
[string]$Description,
[string]$Dns_name,
[switch]$Force,
[switch]$Raw

View file

@ -42,6 +42,8 @@ function Set-NetboxIPAMAddress {
[string]$Description,
[string]$Dns_name,
[switch]$Force
)