mirror of
https://github.com/benclaussen/NetboxPS.git
synced 2025-12-15 18:55:46 +00:00
Address(IPAM): Add dns_name parameter to Add and Set
This commit is contained in:
parent
eea2eebc82
commit
7a8bdff480
2 changed files with 7 additions and 0 deletions
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -42,6 +42,8 @@ function Set-NetboxIPAMAddress {
|
|||
|
||||
[string]$Description,
|
||||
|
||||
[string]$Dns_name,
|
||||
|
||||
[switch]$Force
|
||||
)
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue