github.com/vmware/go-vmware-nsxt@v0.0.0-20230223012718-d31b8a1ca05e/manager/node_interface_alias.go (about)

     1  /* Copyright © 2017 VMware, Inc. All Rights Reserved.
     2     SPDX-License-Identifier: BSD-2-Clause
     3  
     4     Generated by: https://github.com/swagger-api/swagger-codegen.git */
     5  
     6  package manager
     7  
     8  // Node network interface alias
     9  type NodeInterfaceAlias struct {
    10  
    11  	// Interface broadcast address
    12  	BroadcastAddress string `json:"broadcast_address,omitempty"`
    13  
    14  	// Interface IP address
    15  	IpAddress string `json:"ip_address,omitempty"`
    16  
    17  	// Interface configuration
    18  	IpConfiguration string `json:"ip_configuration,omitempty"`
    19  
    20  	// Interface netmask
    21  	Netmask string `json:"netmask,omitempty"`
    22  
    23  	// Interface MAC address
    24  	PhysicalAddress string `json:"physical_address,omitempty"`
    25  }