mirror of
https://github.com/tigpas/NetboxPS.git
synced 2026-03-21 21:45:33 +00:00
add VRF to VirtualMachineInterface
This commit is contained in:
parent
3abf2264d9
commit
5dc68e8865
6 changed files with 20 additions and 2 deletions
|
|
@ -15,6 +15,8 @@ function Add-NetboxVirtualMachineInterface {
|
|||
|
||||
[uint16]$MTU,
|
||||
|
||||
[uint64]$VRF,
|
||||
|
||||
[string]$Description,
|
||||
|
||||
[switch]$Raw
|
||||
|
|
|
|||
|
|
@ -25,6 +25,9 @@ function Get-NetboxVirtualMachineInterface {
|
|||
.PARAMETER MTU
|
||||
Maximum Transmission Unit size. Generally 1500 or 9000
|
||||
|
||||
.PARAMETER VRF
|
||||
ID of the VRF of the interface(s).
|
||||
|
||||
.PARAMETER Virtual_Machine_Id
|
||||
ID of the virtual machine to which the interface(s) are assigned.
|
||||
|
||||
|
|
@ -58,6 +61,8 @@ function Get-NetboxVirtualMachineInterface {
|
|||
|
||||
[uint16]$MTU,
|
||||
|
||||
[uint64]$VRF,
|
||||
|
||||
[uint64]$Virtual_Machine_Id,
|
||||
|
||||
[string]$Virtual_Machine,
|
||||
|
|
|
|||
|
|
@ -15,6 +15,8 @@ function Set-NetboxVirtualMachineInterface {
|
|||
|
||||
[uint16]$MTU,
|
||||
|
||||
[uint64]$VRF,
|
||||
|
||||
[string]$Description,
|
||||
|
||||
[boolean]$Enabled,
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@
|
|||
#
|
||||
# Generated by: Ben Claussen
|
||||
#
|
||||
# Generated on: 01/09/2024
|
||||
# Generated on: 10/4/2024
|
||||
#
|
||||
|
||||
@{
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@
|
|||
#
|
||||
# Generated by: Ben Claussen
|
||||
#
|
||||
# Generated on: 01/09/2024
|
||||
# Generated on: 10/4/2024
|
||||
#
|
||||
|
||||
@{
|
||||
|
|
|
|||
|
|
@ -249,6 +249,8 @@ function Add-NetboxVirtualMachineInterface {
|
|||
|
||||
[uint16]$MTU,
|
||||
|
||||
[uint64]$VRF,
|
||||
|
||||
[string]$Description,
|
||||
|
||||
[switch]$Raw
|
||||
|
|
@ -3404,6 +3406,9 @@ function Get-NetboxVirtualMachineInterface {
|
|||
.PARAMETER MTU
|
||||
Maximum Transmission Unit size. Generally 1500 or 9000
|
||||
|
||||
.PARAMETER VRF
|
||||
ID of the VRF of the interface(s).
|
||||
|
||||
.PARAMETER Virtual_Machine_Id
|
||||
ID of the virtual machine to which the interface(s) are assigned.
|
||||
|
||||
|
|
@ -3437,6 +3442,8 @@ function Get-NetboxVirtualMachineInterface {
|
|||
|
||||
[uint16]$MTU,
|
||||
|
||||
[uint64]$VRF,
|
||||
|
||||
[uint64]$Virtual_Machine_Id,
|
||||
|
||||
[string]$Virtual_Machine,
|
||||
|
|
@ -6217,6 +6224,8 @@ function Set-NetboxVirtualMachineInterface {
|
|||
|
||||
[uint16]$MTU,
|
||||
|
||||
[uint64]$VRF,
|
||||
|
||||
[string]$Description,
|
||||
|
||||
[boolean]$Enabled,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue