mirror of
https://github.com/benclaussen/NetboxPS.git
synced 2025-12-16 11:15: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
|
.PARAMETER Description
|
||||||
Description of IP address
|
Description of IP address
|
||||||
|
|
||||||
|
.PARAMETER Dns_name
|
||||||
|
DNS Name of IP address (example : netbox.example.com)
|
||||||
|
|
||||||
.PARAMETER Force
|
.PARAMETER Force
|
||||||
Do not prompt for confirmation to create IP.
|
Do not prompt for confirmation to create IP.
|
||||||
|
|
||||||
|
|
@ -85,6 +88,8 @@ function New-NetboxIPAMAddress {
|
||||||
|
|
||||||
[string]$Description,
|
[string]$Description,
|
||||||
|
|
||||||
|
[string]$Dns_name,
|
||||||
|
|
||||||
[switch]$Force,
|
[switch]$Force,
|
||||||
|
|
||||||
[switch]$Raw
|
[switch]$Raw
|
||||||
|
|
|
||||||
|
|
@ -42,6 +42,8 @@ function Set-NetboxIPAMAddress {
|
||||||
|
|
||||||
[string]$Description,
|
[string]$Description,
|
||||||
|
|
||||||
|
[string]$Dns_name,
|
||||||
|
|
||||||
[switch]$Force
|
[switch]$Force
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue