github.com/vmware/go-vmware-nsxt@v0.0.0-20230223012718-d31b8a1ca05e/manager/ipv4_dhcp_server.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  type IPv4DhcpServer struct {
     9  
    10  	// dhcp server ip in cidr format
    11  	DhcpServerIp string `json:"dhcp_server_ip"`
    12  
    13  	// dns ips
    14  	DnsNameservers []string `json:"dns_nameservers,omitempty"`
    15  
    16  	// domain name
    17  	DomainName string `json:"domain_name,omitempty"`
    18  
    19  	// gateway ip
    20  	GatewayIp string `json:"gateway_ip,omitempty"`
    21  
    22  	// Defines the default options for all ip-pools and static-bindings of this server. These options will be ignored if options are defined for ip-pools or static-bindings.
    23  	Options *DhcpOptions `json:"options,omitempty"`
    24  }