1. Packages
  2. Vcd Provider
  3. API Docs
  4. NsxtNetworkDhcpBinding
vcd 3.14.1 published on Monday, Apr 14, 2025 by vmware

vcd.NsxtNetworkDhcpBinding

Explore with Pulumi AI

vcd logo
vcd 3.14.1 published on Monday, Apr 14, 2025 by vmware

    Create NsxtNetworkDhcpBinding Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new NsxtNetworkDhcpBinding(name: string, args: NsxtNetworkDhcpBindingArgs, opts?: CustomResourceOptions);
    @overload
    def NsxtNetworkDhcpBinding(resource_name: str,
                               args: NsxtNetworkDhcpBindingArgs,
                               opts: Optional[ResourceOptions] = None)
    
    @overload
    def NsxtNetworkDhcpBinding(resource_name: str,
                               opts: Optional[ResourceOptions] = None,
                               binding_type: Optional[str] = None,
                               ip_address: Optional[str] = None,
                               lease_time: Optional[float] = None,
                               mac_address: Optional[str] = None,
                               org_network_id: Optional[str] = None,
                               description: Optional[str] = None,
                               dhcp_v4_config: Optional[NsxtNetworkDhcpBindingDhcpV4ConfigArgs] = None,
                               dhcp_v6_config: Optional[NsxtNetworkDhcpBindingDhcpV6ConfigArgs] = None,
                               dns_servers: Optional[Sequence[str]] = None,
                               name: Optional[str] = None,
                               nsxt_network_dhcp_binding_id: Optional[str] = None,
                               org: Optional[str] = None)
    func NewNsxtNetworkDhcpBinding(ctx *Context, name string, args NsxtNetworkDhcpBindingArgs, opts ...ResourceOption) (*NsxtNetworkDhcpBinding, error)
    public NsxtNetworkDhcpBinding(string name, NsxtNetworkDhcpBindingArgs args, CustomResourceOptions? opts = null)
    public NsxtNetworkDhcpBinding(String name, NsxtNetworkDhcpBindingArgs args)
    public NsxtNetworkDhcpBinding(String name, NsxtNetworkDhcpBindingArgs args, CustomResourceOptions options)
    
    type: vcd:NsxtNetworkDhcpBinding
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args NsxtNetworkDhcpBindingArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args NsxtNetworkDhcpBindingArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args NsxtNetworkDhcpBindingArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args NsxtNetworkDhcpBindingArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args NsxtNetworkDhcpBindingArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Constructor example

    The following reference example uses placeholder values for all input properties.

    var nsxtNetworkDhcpBindingResource = new Vcd.NsxtNetworkDhcpBinding("nsxtNetworkDhcpBindingResource", new()
    {
        BindingType = "string",
        IpAddress = "string",
        LeaseTime = 0,
        MacAddress = "string",
        OrgNetworkId = "string",
        Description = "string",
        DhcpV4Config = new Vcd.Inputs.NsxtNetworkDhcpBindingDhcpV4ConfigArgs
        {
            GatewayIpAddress = "string",
            Hostname = "string",
        },
        DhcpV6Config = new Vcd.Inputs.NsxtNetworkDhcpBindingDhcpV6ConfigArgs
        {
            DomainNames = new[]
            {
                "string",
            },
            SntpServers = new[]
            {
                "string",
            },
        },
        DnsServers = new[]
        {
            "string",
        },
        Name = "string",
        NsxtNetworkDhcpBindingId = "string",
        Org = "string",
    });
    
    example, err := vcd.NewNsxtNetworkDhcpBinding(ctx, "nsxtNetworkDhcpBindingResource", &vcd.NsxtNetworkDhcpBindingArgs{
    	BindingType:  pulumi.String("string"),
    	IpAddress:    pulumi.String("string"),
    	LeaseTime:    pulumi.Float64(0),
    	MacAddress:   pulumi.String("string"),
    	OrgNetworkId: pulumi.String("string"),
    	Description:  pulumi.String("string"),
    	DhcpV4Config: &vcd.NsxtNetworkDhcpBindingDhcpV4ConfigArgs{
    		GatewayIpAddress: pulumi.String("string"),
    		Hostname:         pulumi.String("string"),
    	},
    	DhcpV6Config: &vcd.NsxtNetworkDhcpBindingDhcpV6ConfigArgs{
    		DomainNames: pulumi.StringArray{
    			pulumi.String("string"),
    		},
    		SntpServers: pulumi.StringArray{
    			pulumi.String("string"),
    		},
    	},
    	DnsServers: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	Name:                     pulumi.String("string"),
    	NsxtNetworkDhcpBindingId: pulumi.String("string"),
    	Org:                      pulumi.String("string"),
    })
    
    var nsxtNetworkDhcpBindingResource = new NsxtNetworkDhcpBinding("nsxtNetworkDhcpBindingResource", NsxtNetworkDhcpBindingArgs.builder()
        .bindingType("string")
        .ipAddress("string")
        .leaseTime(0)
        .macAddress("string")
        .orgNetworkId("string")
        .description("string")
        .dhcpV4Config(NsxtNetworkDhcpBindingDhcpV4ConfigArgs.builder()
            .gatewayIpAddress("string")
            .hostname("string")
            .build())
        .dhcpV6Config(NsxtNetworkDhcpBindingDhcpV6ConfigArgs.builder()
            .domainNames("string")
            .sntpServers("string")
            .build())
        .dnsServers("string")
        .name("string")
        .nsxtNetworkDhcpBindingId("string")
        .org("string")
        .build());
    
    nsxt_network_dhcp_binding_resource = vcd.NsxtNetworkDhcpBinding("nsxtNetworkDhcpBindingResource",
        binding_type="string",
        ip_address="string",
        lease_time=0,
        mac_address="string",
        org_network_id="string",
        description="string",
        dhcp_v4_config={
            "gateway_ip_address": "string",
            "hostname": "string",
        },
        dhcp_v6_config={
            "domain_names": ["string"],
            "sntp_servers": ["string"],
        },
        dns_servers=["string"],
        name="string",
        nsxt_network_dhcp_binding_id="string",
        org="string")
    
    const nsxtNetworkDhcpBindingResource = new vcd.NsxtNetworkDhcpBinding("nsxtNetworkDhcpBindingResource", {
        bindingType: "string",
        ipAddress: "string",
        leaseTime: 0,
        macAddress: "string",
        orgNetworkId: "string",
        description: "string",
        dhcpV4Config: {
            gatewayIpAddress: "string",
            hostname: "string",
        },
        dhcpV6Config: {
            domainNames: ["string"],
            sntpServers: ["string"],
        },
        dnsServers: ["string"],
        name: "string",
        nsxtNetworkDhcpBindingId: "string",
        org: "string",
    });
    
    type: vcd:NsxtNetworkDhcpBinding
    properties:
        bindingType: string
        description: string
        dhcpV4Config:
            gatewayIpAddress: string
            hostname: string
        dhcpV6Config:
            domainNames:
                - string
            sntpServers:
                - string
        dnsServers:
            - string
        ipAddress: string
        leaseTime: 0
        macAddress: string
        name: string
        nsxtNetworkDhcpBindingId: string
        org: string
        orgNetworkId: string
    

    NsxtNetworkDhcpBinding Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

    The NsxtNetworkDhcpBinding resource accepts the following input properties:

    BindingType string
    One of IPV4 or IPV6
    IpAddress string
    IP address used for binding
    LeaseTime double
    Lease time in seconds. Minimum 3600 seconds
    MacAddress string
    MAC address used for binding
    OrgNetworkId string
    The ID of an Org VDC network. Note (.id field) of vcd.NetworkIsolatedV2, vcd.NetworkRoutedV2 or vcd.NsxtNetworkDhcp can be referenced here. It is more convenient to use reference to vcd.NsxtNetworkDhcp ID because it makes sure that DHCP is enabled before configuring pools
    Description string
    Description of DHCP binding
    DhcpV4Config NsxtNetworkDhcpBindingDhcpV4Config
    Additional configuration for IPv4 specific options. See IPv4 block
    DhcpV6Config NsxtNetworkDhcpBindingDhcpV6Config

    Additional configuration for IPv6 specific options. See IPv6 block

    DnsServers List<string>
    A list of DNS servers. Maximum 2 can be specified
    Name string
    Name of DHCP binding
    NsxtNetworkDhcpBindingId string
    Org string
    The name of organization. Optional if defined at provider level
    BindingType string
    One of IPV4 or IPV6
    IpAddress string
    IP address used for binding
    LeaseTime float64
    Lease time in seconds. Minimum 3600 seconds
    MacAddress string
    MAC address used for binding
    OrgNetworkId string
    The ID of an Org VDC network. Note (.id field) of vcd.NetworkIsolatedV2, vcd.NetworkRoutedV2 or vcd.NsxtNetworkDhcp can be referenced here. It is more convenient to use reference to vcd.NsxtNetworkDhcp ID because it makes sure that DHCP is enabled before configuring pools
    Description string
    Description of DHCP binding
    DhcpV4Config NsxtNetworkDhcpBindingDhcpV4ConfigArgs
    Additional configuration for IPv4 specific options. See IPv4 block
    DhcpV6Config NsxtNetworkDhcpBindingDhcpV6ConfigArgs

    Additional configuration for IPv6 specific options. See IPv6 block

    DnsServers []string
    A list of DNS servers. Maximum 2 can be specified
    Name string
    Name of DHCP binding
    NsxtNetworkDhcpBindingId string
    Org string
    The name of organization. Optional if defined at provider level
    bindingType String
    One of IPV4 or IPV6
    ipAddress String
    IP address used for binding
    leaseTime Double
    Lease time in seconds. Minimum 3600 seconds
    macAddress String
    MAC address used for binding
    orgNetworkId String
    The ID of an Org VDC network. Note (.id field) of vcd.NetworkIsolatedV2, vcd.NetworkRoutedV2 or vcd.NsxtNetworkDhcp can be referenced here. It is more convenient to use reference to vcd.NsxtNetworkDhcp ID because it makes sure that DHCP is enabled before configuring pools
    description String
    Description of DHCP binding
    dhcpV4Config NsxtNetworkDhcpBindingDhcpV4Config
    Additional configuration for IPv4 specific options. See IPv4 block
    dhcpV6Config NsxtNetworkDhcpBindingDhcpV6Config

    Additional configuration for IPv6 specific options. See IPv6 block

    dnsServers List<String>
    A list of DNS servers. Maximum 2 can be specified
    name String
    Name of DHCP binding
    nsxtNetworkDhcpBindingId String
    org String
    The name of organization. Optional if defined at provider level
    bindingType string
    One of IPV4 or IPV6
    ipAddress string
    IP address used for binding
    leaseTime number
    Lease time in seconds. Minimum 3600 seconds
    macAddress string
    MAC address used for binding
    orgNetworkId string
    The ID of an Org VDC network. Note (.id field) of vcd.NetworkIsolatedV2, vcd.NetworkRoutedV2 or vcd.NsxtNetworkDhcp can be referenced here. It is more convenient to use reference to vcd.NsxtNetworkDhcp ID because it makes sure that DHCP is enabled before configuring pools
    description string
    Description of DHCP binding
    dhcpV4Config NsxtNetworkDhcpBindingDhcpV4Config
    Additional configuration for IPv4 specific options. See IPv4 block
    dhcpV6Config NsxtNetworkDhcpBindingDhcpV6Config

    Additional configuration for IPv6 specific options. See IPv6 block

    dnsServers string[]
    A list of DNS servers. Maximum 2 can be specified
    name string
    Name of DHCP binding
    nsxtNetworkDhcpBindingId string
    org string
    The name of organization. Optional if defined at provider level
    binding_type str
    One of IPV4 or IPV6
    ip_address str
    IP address used for binding
    lease_time float
    Lease time in seconds. Minimum 3600 seconds
    mac_address str
    MAC address used for binding
    org_network_id str
    The ID of an Org VDC network. Note (.id field) of vcd.NetworkIsolatedV2, vcd.NetworkRoutedV2 or vcd.NsxtNetworkDhcp can be referenced here. It is more convenient to use reference to vcd.NsxtNetworkDhcp ID because it makes sure that DHCP is enabled before configuring pools
    description str
    Description of DHCP binding
    dhcp_v4_config NsxtNetworkDhcpBindingDhcpV4ConfigArgs
    Additional configuration for IPv4 specific options. See IPv4 block
    dhcp_v6_config NsxtNetworkDhcpBindingDhcpV6ConfigArgs

    Additional configuration for IPv6 specific options. See IPv6 block

    dns_servers Sequence[str]
    A list of DNS servers. Maximum 2 can be specified
    name str
    Name of DHCP binding
    nsxt_network_dhcp_binding_id str
    org str
    The name of organization. Optional if defined at provider level
    bindingType String
    One of IPV4 or IPV6
    ipAddress String
    IP address used for binding
    leaseTime Number
    Lease time in seconds. Minimum 3600 seconds
    macAddress String
    MAC address used for binding
    orgNetworkId String
    The ID of an Org VDC network. Note (.id field) of vcd.NetworkIsolatedV2, vcd.NetworkRoutedV2 or vcd.NsxtNetworkDhcp can be referenced here. It is more convenient to use reference to vcd.NsxtNetworkDhcp ID because it makes sure that DHCP is enabled before configuring pools
    description String
    Description of DHCP binding
    dhcpV4Config Property Map
    Additional configuration for IPv4 specific options. See IPv4 block
    dhcpV6Config Property Map

    Additional configuration for IPv6 specific options. See IPv6 block

    dnsServers List<String>
    A list of DNS servers. Maximum 2 can be specified
    name String
    Name of DHCP binding
    nsxtNetworkDhcpBindingId String
    org String
    The name of organization. Optional if defined at provider level

    Outputs

    All input properties are implicitly available as output properties. Additionally, the NsxtNetworkDhcpBinding resource produces the following output properties:

    Id string
    The provider-assigned unique ID for this managed resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.
    id string
    The provider-assigned unique ID for this managed resource.
    id str
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.

    Look up Existing NsxtNetworkDhcpBinding Resource

    Get an existing NsxtNetworkDhcpBinding resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: NsxtNetworkDhcpBindingState, opts?: CustomResourceOptions): NsxtNetworkDhcpBinding
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            binding_type: Optional[str] = None,
            description: Optional[str] = None,
            dhcp_v4_config: Optional[NsxtNetworkDhcpBindingDhcpV4ConfigArgs] = None,
            dhcp_v6_config: Optional[NsxtNetworkDhcpBindingDhcpV6ConfigArgs] = None,
            dns_servers: Optional[Sequence[str]] = None,
            ip_address: Optional[str] = None,
            lease_time: Optional[float] = None,
            mac_address: Optional[str] = None,
            name: Optional[str] = None,
            nsxt_network_dhcp_binding_id: Optional[str] = None,
            org: Optional[str] = None,
            org_network_id: Optional[str] = None) -> NsxtNetworkDhcpBinding
    func GetNsxtNetworkDhcpBinding(ctx *Context, name string, id IDInput, state *NsxtNetworkDhcpBindingState, opts ...ResourceOption) (*NsxtNetworkDhcpBinding, error)
    public static NsxtNetworkDhcpBinding Get(string name, Input<string> id, NsxtNetworkDhcpBindingState? state, CustomResourceOptions? opts = null)
    public static NsxtNetworkDhcpBinding get(String name, Output<String> id, NsxtNetworkDhcpBindingState state, CustomResourceOptions options)
    resources:  _:    type: vcd:NsxtNetworkDhcpBinding    get:      id: ${id}
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    BindingType string
    One of IPV4 or IPV6
    Description string
    Description of DHCP binding
    DhcpV4Config NsxtNetworkDhcpBindingDhcpV4Config
    Additional configuration for IPv4 specific options. See IPv4 block
    DhcpV6Config NsxtNetworkDhcpBindingDhcpV6Config

    Additional configuration for IPv6 specific options. See IPv6 block

    DnsServers List<string>
    A list of DNS servers. Maximum 2 can be specified
    IpAddress string
    IP address used for binding
    LeaseTime double
    Lease time in seconds. Minimum 3600 seconds
    MacAddress string
    MAC address used for binding
    Name string
    Name of DHCP binding
    NsxtNetworkDhcpBindingId string
    Org string
    The name of organization. Optional if defined at provider level
    OrgNetworkId string
    The ID of an Org VDC network. Note (.id field) of vcd.NetworkIsolatedV2, vcd.NetworkRoutedV2 or vcd.NsxtNetworkDhcp can be referenced here. It is more convenient to use reference to vcd.NsxtNetworkDhcp ID because it makes sure that DHCP is enabled before configuring pools
    BindingType string
    One of IPV4 or IPV6
    Description string
    Description of DHCP binding
    DhcpV4Config NsxtNetworkDhcpBindingDhcpV4ConfigArgs
    Additional configuration for IPv4 specific options. See IPv4 block
    DhcpV6Config NsxtNetworkDhcpBindingDhcpV6ConfigArgs

    Additional configuration for IPv6 specific options. See IPv6 block

    DnsServers []string
    A list of DNS servers. Maximum 2 can be specified
    IpAddress string
    IP address used for binding
    LeaseTime float64
    Lease time in seconds. Minimum 3600 seconds
    MacAddress string
    MAC address used for binding
    Name string
    Name of DHCP binding
    NsxtNetworkDhcpBindingId string
    Org string
    The name of organization. Optional if defined at provider level
    OrgNetworkId string
    The ID of an Org VDC network. Note (.id field) of vcd.NetworkIsolatedV2, vcd.NetworkRoutedV2 or vcd.NsxtNetworkDhcp can be referenced here. It is more convenient to use reference to vcd.NsxtNetworkDhcp ID because it makes sure that DHCP is enabled before configuring pools
    bindingType String
    One of IPV4 or IPV6
    description String
    Description of DHCP binding
    dhcpV4Config NsxtNetworkDhcpBindingDhcpV4Config
    Additional configuration for IPv4 specific options. See IPv4 block
    dhcpV6Config NsxtNetworkDhcpBindingDhcpV6Config

    Additional configuration for IPv6 specific options. See IPv6 block

    dnsServers List<String>
    A list of DNS servers. Maximum 2 can be specified
    ipAddress String
    IP address used for binding
    leaseTime Double
    Lease time in seconds. Minimum 3600 seconds
    macAddress String
    MAC address used for binding
    name String
    Name of DHCP binding
    nsxtNetworkDhcpBindingId String
    org String
    The name of organization. Optional if defined at provider level
    orgNetworkId String
    The ID of an Org VDC network. Note (.id field) of vcd.NetworkIsolatedV2, vcd.NetworkRoutedV2 or vcd.NsxtNetworkDhcp can be referenced here. It is more convenient to use reference to vcd.NsxtNetworkDhcp ID because it makes sure that DHCP is enabled before configuring pools
    bindingType string
    One of IPV4 or IPV6
    description string
    Description of DHCP binding
    dhcpV4Config NsxtNetworkDhcpBindingDhcpV4Config
    Additional configuration for IPv4 specific options. See IPv4 block
    dhcpV6Config NsxtNetworkDhcpBindingDhcpV6Config

    Additional configuration for IPv6 specific options. See IPv6 block

    dnsServers string[]
    A list of DNS servers. Maximum 2 can be specified
    ipAddress string
    IP address used for binding
    leaseTime number
    Lease time in seconds. Minimum 3600 seconds
    macAddress string
    MAC address used for binding
    name string
    Name of DHCP binding
    nsxtNetworkDhcpBindingId string
    org string
    The name of organization. Optional if defined at provider level
    orgNetworkId string
    The ID of an Org VDC network. Note (.id field) of vcd.NetworkIsolatedV2, vcd.NetworkRoutedV2 or vcd.NsxtNetworkDhcp can be referenced here. It is more convenient to use reference to vcd.NsxtNetworkDhcp ID because it makes sure that DHCP is enabled before configuring pools
    binding_type str
    One of IPV4 or IPV6
    description str
    Description of DHCP binding
    dhcp_v4_config NsxtNetworkDhcpBindingDhcpV4ConfigArgs
    Additional configuration for IPv4 specific options. See IPv4 block
    dhcp_v6_config NsxtNetworkDhcpBindingDhcpV6ConfigArgs

    Additional configuration for IPv6 specific options. See IPv6 block

    dns_servers Sequence[str]
    A list of DNS servers. Maximum 2 can be specified
    ip_address str
    IP address used for binding
    lease_time float
    Lease time in seconds. Minimum 3600 seconds
    mac_address str
    MAC address used for binding
    name str
    Name of DHCP binding
    nsxt_network_dhcp_binding_id str
    org str
    The name of organization. Optional if defined at provider level
    org_network_id str
    The ID of an Org VDC network. Note (.id field) of vcd.NetworkIsolatedV2, vcd.NetworkRoutedV2 or vcd.NsxtNetworkDhcp can be referenced here. It is more convenient to use reference to vcd.NsxtNetworkDhcp ID because it makes sure that DHCP is enabled before configuring pools
    bindingType String
    One of IPV4 or IPV6
    description String
    Description of DHCP binding
    dhcpV4Config Property Map
    Additional configuration for IPv4 specific options. See IPv4 block
    dhcpV6Config Property Map

    Additional configuration for IPv6 specific options. See IPv6 block

    dnsServers List<String>
    A list of DNS servers. Maximum 2 can be specified
    ipAddress String
    IP address used for binding
    leaseTime Number
    Lease time in seconds. Minimum 3600 seconds
    macAddress String
    MAC address used for binding
    name String
    Name of DHCP binding
    nsxtNetworkDhcpBindingId String
    org String
    The name of organization. Optional if defined at provider level
    orgNetworkId String
    The ID of an Org VDC network. Note (.id field) of vcd.NetworkIsolatedV2, vcd.NetworkRoutedV2 or vcd.NsxtNetworkDhcp can be referenced here. It is more convenient to use reference to vcd.NsxtNetworkDhcp ID because it makes sure that DHCP is enabled before configuring pools

    Supporting Types

    NsxtNetworkDhcpBindingDhcpV4Config, NsxtNetworkDhcpBindingDhcpV4ConfigArgs

    GatewayIpAddress string
    IPv4 gateway address
    Hostname string
    Hostname for the DHCP client
    GatewayIpAddress string
    IPv4 gateway address
    Hostname string
    Hostname for the DHCP client
    gatewayIpAddress String
    IPv4 gateway address
    hostname String
    Hostname for the DHCP client
    gatewayIpAddress string
    IPv4 gateway address
    hostname string
    Hostname for the DHCP client
    gateway_ip_address str
    IPv4 gateway address
    hostname str
    Hostname for the DHCP client
    gatewayIpAddress String
    IPv4 gateway address
    hostname String
    Hostname for the DHCP client

    NsxtNetworkDhcpBindingDhcpV6Config, NsxtNetworkDhcpBindingDhcpV6ConfigArgs

    DomainNames List<string>
    Set of domain names
    SntpServers List<string>
    Set of SNTP servers
    DomainNames []string
    Set of domain names
    SntpServers []string
    Set of SNTP servers
    domainNames List<String>
    Set of domain names
    sntpServers List<String>
    Set of SNTP servers
    domainNames string[]
    Set of domain names
    sntpServers string[]
    Set of SNTP servers
    domain_names Sequence[str]
    Set of domain names
    sntp_servers Sequence[str]
    Set of SNTP servers
    domainNames List<String>
    Set of domain names
    sntpServers List<String>
    Set of SNTP servers

    Package Details

    Repository
    vcd vmware/terraform-provider-vcd
    License
    Notes
    This Pulumi package is based on the vcd Terraform Provider.
    vcd logo
    vcd 3.14.1 published on Monday, Apr 14, 2025 by vmware