1. Packages
  2. Nsxt Provider
  3. API Docs
  4. PolicyHostTransportNodeProfile
nsxt 3.8.1 published on Wednesday, Apr 30, 2025 by vmware

nsxt.PolicyHostTransportNodeProfile

Explore with Pulumi AI

nsxt logo
nsxt 3.8.1 published on Wednesday, Apr 30, 2025 by vmware

    This resource provides a method for the management of a Policy Host Transport Node Profile. This resource is supported with NSX 4.1.0 onwards.

    NOTE: In case that the nsxt.PolicyHostTransportNodeProfile is created in the same plan with nsxt.ComputeManager, it is required to add a dependency between the two.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as nsxt from "@pulumi/nsxt";
    
    const test = new nsxt.PolicyHostTransportNodeProfile("test", {
        displayName: "test_policy_host_tnp",
        standardHostSwitches: [{
            ipAssignment: {
                assignedByDhcp: true,
            },
            transportZoneEndpoints: [{
                transportZone: data.nsxt_policy_transport_zone.tz1.path,
            }],
            uplinkProfile: nsxt_policy_uplink_host_switch_profile.hsw_profile1.path,
            isMigratePnics: false,
            pnics: [{
                deviceName: "fp-eth0",
                uplinkName: "uplink1",
            }],
        }],
    });
    
    import pulumi
    import pulumi_nsxt as nsxt
    
    test = nsxt.PolicyHostTransportNodeProfile("test",
        display_name="test_policy_host_tnp",
        standard_host_switches=[{
            "ip_assignment": {
                "assigned_by_dhcp": True,
            },
            "transport_zone_endpoints": [{
                "transport_zone": data["nsxt_policy_transport_zone"]["tz1"]["path"],
            }],
            "uplink_profile": nsxt_policy_uplink_host_switch_profile["hsw_profile1"]["path"],
            "is_migrate_pnics": False,
            "pnics": [{
                "device_name": "fp-eth0",
                "uplink_name": "uplink1",
            }],
        }])
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/nsxt/v3/nsxt"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := nsxt.NewPolicyHostTransportNodeProfile(ctx, "test", &nsxt.PolicyHostTransportNodeProfileArgs{
    			DisplayName: pulumi.String("test_policy_host_tnp"),
    			StandardHostSwitches: nsxt.PolicyHostTransportNodeProfileStandardHostSwitchArray{
    				&nsxt.PolicyHostTransportNodeProfileStandardHostSwitchArgs{
    					IpAssignment: &nsxt.PolicyHostTransportNodeProfileStandardHostSwitchIpAssignmentArgs{
    						AssignedByDhcp: pulumi.Bool(true),
    					},
    					TransportZoneEndpoints: nsxt.PolicyHostTransportNodeProfileStandardHostSwitchTransportZoneEndpointArray{
    						&nsxt.PolicyHostTransportNodeProfileStandardHostSwitchTransportZoneEndpointArgs{
    							TransportZone: pulumi.Any(data.Nsxt_policy_transport_zone.Tz1.Path),
    						},
    					},
    					UplinkProfile:  pulumi.Any(nsxt_policy_uplink_host_switch_profile.Hsw_profile1.Path),
    					IsMigratePnics: pulumi.Bool(false),
    					Pnics: nsxt.PolicyHostTransportNodeProfileStandardHostSwitchPnicArray{
    						&nsxt.PolicyHostTransportNodeProfileStandardHostSwitchPnicArgs{
    							DeviceName: pulumi.String("fp-eth0"),
    							UplinkName: pulumi.String("uplink1"),
    						},
    					},
    				},
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Nsxt = Pulumi.Nsxt;
    
    return await Deployment.RunAsync(() => 
    {
        var test = new Nsxt.PolicyHostTransportNodeProfile("test", new()
        {
            DisplayName = "test_policy_host_tnp",
            StandardHostSwitches = new[]
            {
                new Nsxt.Inputs.PolicyHostTransportNodeProfileStandardHostSwitchArgs
                {
                    IpAssignment = new Nsxt.Inputs.PolicyHostTransportNodeProfileStandardHostSwitchIpAssignmentArgs
                    {
                        AssignedByDhcp = true,
                    },
                    TransportZoneEndpoints = new[]
                    {
                        new Nsxt.Inputs.PolicyHostTransportNodeProfileStandardHostSwitchTransportZoneEndpointArgs
                        {
                            TransportZone = data.Nsxt_policy_transport_zone.Tz1.Path,
                        },
                    },
                    UplinkProfile = nsxt_policy_uplink_host_switch_profile.Hsw_profile1.Path,
                    IsMigratePnics = false,
                    Pnics = new[]
                    {
                        new Nsxt.Inputs.PolicyHostTransportNodeProfileStandardHostSwitchPnicArgs
                        {
                            DeviceName = "fp-eth0",
                            UplinkName = "uplink1",
                        },
                    },
                },
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.nsxt.PolicyHostTransportNodeProfile;
    import com.pulumi.nsxt.PolicyHostTransportNodeProfileArgs;
    import com.pulumi.nsxt.inputs.PolicyHostTransportNodeProfileStandardHostSwitchArgs;
    import com.pulumi.nsxt.inputs.PolicyHostTransportNodeProfileStandardHostSwitchIpAssignmentArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            var test = new PolicyHostTransportNodeProfile("test", PolicyHostTransportNodeProfileArgs.builder()
                .displayName("test_policy_host_tnp")
                .standardHostSwitches(PolicyHostTransportNodeProfileStandardHostSwitchArgs.builder()
                    .ipAssignment(PolicyHostTransportNodeProfileStandardHostSwitchIpAssignmentArgs.builder()
                        .assignedByDhcp(true)
                        .build())
                    .transportZoneEndpoints(PolicyHostTransportNodeProfileStandardHostSwitchTransportZoneEndpointArgs.builder()
                        .transportZone(data.nsxt_policy_transport_zone().tz1().path())
                        .build())
                    .uplinkProfile(nsxt_policy_uplink_host_switch_profile.hsw_profile1().path())
                    .isMigratePnics(false)
                    .pnics(PolicyHostTransportNodeProfileStandardHostSwitchPnicArgs.builder()
                        .deviceName("fp-eth0")
                        .uplinkName("uplink1")
                        .build())
                    .build())
                .build());
    
        }
    }
    
    resources:
      test:
        type: nsxt:PolicyHostTransportNodeProfile
        properties:
          displayName: test_policy_host_tnp
          standardHostSwitches:
            - ipAssignment:
                assignedByDhcp: true
              transportZoneEndpoints:
                - transportZone: ${data.nsxt_policy_transport_zone.tz1.path}
              uplinkProfile: ${nsxt_policy_uplink_host_switch_profile.hsw_profile1.path}
              isMigratePnics: false
              pnics:
                - deviceName: fp-eth0
                  uplinkName: uplink1
    

    Create PolicyHostTransportNodeProfile Resource

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

    Constructor syntax

    new PolicyHostTransportNodeProfile(name: string, args: PolicyHostTransportNodeProfileArgs, opts?: CustomResourceOptions);
    @overload
    def PolicyHostTransportNodeProfile(resource_name: str,
                                       args: PolicyHostTransportNodeProfileArgs,
                                       opts: Optional[ResourceOptions] = None)
    
    @overload
    def PolicyHostTransportNodeProfile(resource_name: str,
                                       opts: Optional[ResourceOptions] = None,
                                       display_name: Optional[str] = None,
                                       standard_host_switches: Optional[Sequence[PolicyHostTransportNodeProfileStandardHostSwitchArgs]] = None,
                                       description: Optional[str] = None,
                                       ignore_overridden_hosts: Optional[bool] = None,
                                       nsx_id: Optional[str] = None,
                                       policy_host_transport_node_profile_id: Optional[str] = None,
                                       tags: Optional[Sequence[PolicyHostTransportNodeProfileTagArgs]] = None)
    func NewPolicyHostTransportNodeProfile(ctx *Context, name string, args PolicyHostTransportNodeProfileArgs, opts ...ResourceOption) (*PolicyHostTransportNodeProfile, error)
    public PolicyHostTransportNodeProfile(string name, PolicyHostTransportNodeProfileArgs args, CustomResourceOptions? opts = null)
    public PolicyHostTransportNodeProfile(String name, PolicyHostTransportNodeProfileArgs args)
    public PolicyHostTransportNodeProfile(String name, PolicyHostTransportNodeProfileArgs args, CustomResourceOptions options)
    
    type: nsxt:PolicyHostTransportNodeProfile
    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 PolicyHostTransportNodeProfileArgs
    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 PolicyHostTransportNodeProfileArgs
    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 PolicyHostTransportNodeProfileArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args PolicyHostTransportNodeProfileArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args PolicyHostTransportNodeProfileArgs
    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 policyHostTransportNodeProfileResource = new Nsxt.PolicyHostTransportNodeProfile("policyHostTransportNodeProfileResource", new()
    {
        DisplayName = "string",
        StandardHostSwitches = new[]
        {
            new Nsxt.Inputs.PolicyHostTransportNodeProfileStandardHostSwitchArgs
            {
                CpuConfigs = new[]
                {
                    new Nsxt.Inputs.PolicyHostTransportNodeProfileStandardHostSwitchCpuConfigArgs
                    {
                        NumLcores = 0,
                        NumaNodeIndex = 0,
                    },
                },
                HostSwitchId = "string",
                HostSwitchMode = "string",
                HostSwitchName = "string",
                IpAssignment = new Nsxt.Inputs.PolicyHostTransportNodeProfileStandardHostSwitchIpAssignmentArgs
                {
                    AssignedByDhcp = false,
                    NoIpv4 = false,
                    StaticIp = new Nsxt.Inputs.PolicyHostTransportNodeProfileStandardHostSwitchIpAssignmentStaticIpArgs
                    {
                        DefaultGateway = "string",
                        IpAddresses = new[]
                        {
                            "string",
                        },
                        SubnetMask = "string",
                    },
                    StaticIpMac = new Nsxt.Inputs.PolicyHostTransportNodeProfileStandardHostSwitchIpAssignmentStaticIpMacArgs
                    {
                        DefaultGateway = "string",
                        IpMacPairs = new[]
                        {
                            new Nsxt.Inputs.PolicyHostTransportNodeProfileStandardHostSwitchIpAssignmentStaticIpMacIpMacPairArgs
                            {
                                IpAddress = "string",
                                MacAddress = "string",
                            },
                        },
                        SubnetMask = "string",
                    },
                    StaticIpPool = "string",
                },
                Ipv6Assignment = new Nsxt.Inputs.PolicyHostTransportNodeProfileStandardHostSwitchIpv6AssignmentArgs
                {
                    AssignedByAutoconf = false,
                    AssignedByDhcpv6 = false,
                    NoIpv6 = false,
                    StaticIp = new Nsxt.Inputs.PolicyHostTransportNodeProfileStandardHostSwitchIpv6AssignmentStaticIpArgs
                    {
                        DefaultGateway = "string",
                        IpAddresses = new[]
                        {
                            "string",
                        },
                        PrefixLength = "string",
                    },
                    StaticIpMac = new Nsxt.Inputs.PolicyHostTransportNodeProfileStandardHostSwitchIpv6AssignmentStaticIpMacArgs
                    {
                        DefaultGateway = "string",
                        IpMacPairs = new[]
                        {
                            new Nsxt.Inputs.PolicyHostTransportNodeProfileStandardHostSwitchIpv6AssignmentStaticIpMacIpMacPairArgs
                            {
                                IpAddress = "string",
                                MacAddress = "string",
                            },
                        },
                        PrefixLength = "string",
                    },
                    StaticIpPool = "string",
                },
                IsMigratePnics = false,
                Pnics = new[]
                {
                    new Nsxt.Inputs.PolicyHostTransportNodeProfileStandardHostSwitchPnicArgs
                    {
                        DeviceName = "string",
                        UplinkName = "string",
                    },
                },
                TransportNodeProfileSubConfigs = new[]
                {
                    new Nsxt.Inputs.PolicyHostTransportNodeProfileStandardHostSwitchTransportNodeProfileSubConfigArgs
                    {
                        HostSwitchConfigOption = new Nsxt.Inputs.PolicyHostTransportNodeProfileStandardHostSwitchTransportNodeProfileSubConfigHostSwitchConfigOptionArgs
                        {
                            HostSwitchId = "string",
                            IpAssignment = new Nsxt.Inputs.PolicyHostTransportNodeProfileStandardHostSwitchTransportNodeProfileSubConfigHostSwitchConfigOptionIpAssignmentArgs
                            {
                                AssignedByDhcp = false,
                                NoIpv4 = false,
                                StaticIp = new Nsxt.Inputs.PolicyHostTransportNodeProfileStandardHostSwitchTransportNodeProfileSubConfigHostSwitchConfigOptionIpAssignmentStaticIpArgs
                                {
                                    DefaultGateway = "string",
                                    IpAddresses = new[]
                                    {
                                        "string",
                                    },
                                    SubnetMask = "string",
                                },
                                StaticIpMac = new Nsxt.Inputs.PolicyHostTransportNodeProfileStandardHostSwitchTransportNodeProfileSubConfigHostSwitchConfigOptionIpAssignmentStaticIpMacArgs
                                {
                                    DefaultGateway = "string",
                                    IpMacPairs = new[]
                                    {
                                        new Nsxt.Inputs.PolicyHostTransportNodeProfileStandardHostSwitchTransportNodeProfileSubConfigHostSwitchConfigOptionIpAssignmentStaticIpMacIpMacPairArgs
                                        {
                                            IpAddress = "string",
                                            MacAddress = "string",
                                        },
                                    },
                                    SubnetMask = "string",
                                },
                                StaticIpPool = "string",
                            },
                            Ipv6Assignment = new Nsxt.Inputs.PolicyHostTransportNodeProfileStandardHostSwitchTransportNodeProfileSubConfigHostSwitchConfigOptionIpv6AssignmentArgs
                            {
                                AssignedByAutoconf = false,
                                AssignedByDhcpv6 = false,
                                NoIpv6 = false,
                                StaticIp = new Nsxt.Inputs.PolicyHostTransportNodeProfileStandardHostSwitchTransportNodeProfileSubConfigHostSwitchConfigOptionIpv6AssignmentStaticIpArgs
                                {
                                    DefaultGateway = "string",
                                    IpAddresses = new[]
                                    {
                                        "string",
                                    },
                                    PrefixLength = "string",
                                },
                                StaticIpMac = new Nsxt.Inputs.PolicyHostTransportNodeProfileStandardHostSwitchTransportNodeProfileSubConfigHostSwitchConfigOptionIpv6AssignmentStaticIpMacArgs
                                {
                                    DefaultGateway = "string",
                                    IpMacPairs = new[]
                                    {
                                        new Nsxt.Inputs.PolicyHostTransportNodeProfileStandardHostSwitchTransportNodeProfileSubConfigHostSwitchConfigOptionIpv6AssignmentStaticIpMacIpMacPairArgs
                                        {
                                            IpAddress = "string",
                                            MacAddress = "string",
                                        },
                                    },
                                    PrefixLength = "string",
                                },
                                StaticIpPool = "string",
                            },
                            UplinkProfile = "string",
                            Uplinks = new[]
                            {
                                new Nsxt.Inputs.PolicyHostTransportNodeProfileStandardHostSwitchTransportNodeProfileSubConfigHostSwitchConfigOptionUplinkArgs
                                {
                                    UplinkName = "string",
                                    VdsLagName = "string",
                                    VdsUplinkName = "string",
                                },
                            },
                            VtepHaProfile = "string",
                        },
                        Name = "string",
                    },
                },
                TransportZoneEndpoints = new[]
                {
                    new Nsxt.Inputs.PolicyHostTransportNodeProfileStandardHostSwitchTransportZoneEndpointArgs
                    {
                        TransportZone = "string",
                        TransportZoneProfiles = new[]
                        {
                            "string",
                        },
                    },
                },
                UplinkProfile = "string",
                Uplinks = new[]
                {
                    new Nsxt.Inputs.PolicyHostTransportNodeProfileStandardHostSwitchUplinkArgs
                    {
                        UplinkName = "string",
                        VdsLagName = "string",
                        VdsUplinkName = "string",
                    },
                },
                VmkInstallMigrations = new[]
                {
                    new Nsxt.Inputs.PolicyHostTransportNodeProfileStandardHostSwitchVmkInstallMigrationArgs
                    {
                        DestinationNetwork = "string",
                        DeviceName = "string",
                    },
                },
                VtepHaProfile = "string",
            },
        },
        Description = "string",
        IgnoreOverriddenHosts = false,
        NsxId = "string",
        PolicyHostTransportNodeProfileId = "string",
        Tags = new[]
        {
            new Nsxt.Inputs.PolicyHostTransportNodeProfileTagArgs
            {
                Scope = "string",
                Tag = "string",
            },
        },
    });
    
    example, err := nsxt.NewPolicyHostTransportNodeProfile(ctx, "policyHostTransportNodeProfileResource", &nsxt.PolicyHostTransportNodeProfileArgs{
    	DisplayName: pulumi.String("string"),
    	StandardHostSwitches: nsxt.PolicyHostTransportNodeProfileStandardHostSwitchArray{
    		&nsxt.PolicyHostTransportNodeProfileStandardHostSwitchArgs{
    			CpuConfigs: nsxt.PolicyHostTransportNodeProfileStandardHostSwitchCpuConfigArray{
    				&nsxt.PolicyHostTransportNodeProfileStandardHostSwitchCpuConfigArgs{
    					NumLcores:     pulumi.Float64(0),
    					NumaNodeIndex: pulumi.Float64(0),
    				},
    			},
    			HostSwitchId:   pulumi.String("string"),
    			HostSwitchMode: pulumi.String("string"),
    			HostSwitchName: pulumi.String("string"),
    			IpAssignment: &nsxt.PolicyHostTransportNodeProfileStandardHostSwitchIpAssignmentArgs{
    				AssignedByDhcp: pulumi.Bool(false),
    				NoIpv4:         pulumi.Bool(false),
    				StaticIp: &nsxt.PolicyHostTransportNodeProfileStandardHostSwitchIpAssignmentStaticIpArgs{
    					DefaultGateway: pulumi.String("string"),
    					IpAddresses: pulumi.StringArray{
    						pulumi.String("string"),
    					},
    					SubnetMask: pulumi.String("string"),
    				},
    				StaticIpMac: &nsxt.PolicyHostTransportNodeProfileStandardHostSwitchIpAssignmentStaticIpMacArgs{
    					DefaultGateway: pulumi.String("string"),
    					IpMacPairs: nsxt.PolicyHostTransportNodeProfileStandardHostSwitchIpAssignmentStaticIpMacIpMacPairArray{
    						&nsxt.PolicyHostTransportNodeProfileStandardHostSwitchIpAssignmentStaticIpMacIpMacPairArgs{
    							IpAddress:  pulumi.String("string"),
    							MacAddress: pulumi.String("string"),
    						},
    					},
    					SubnetMask: pulumi.String("string"),
    				},
    				StaticIpPool: pulumi.String("string"),
    			},
    			Ipv6Assignment: &nsxt.PolicyHostTransportNodeProfileStandardHostSwitchIpv6AssignmentArgs{
    				AssignedByAutoconf: pulumi.Bool(false),
    				AssignedByDhcpv6:   pulumi.Bool(false),
    				NoIpv6:             pulumi.Bool(false),
    				StaticIp: &nsxt.PolicyHostTransportNodeProfileStandardHostSwitchIpv6AssignmentStaticIpArgs{
    					DefaultGateway: pulumi.String("string"),
    					IpAddresses: pulumi.StringArray{
    						pulumi.String("string"),
    					},
    					PrefixLength: pulumi.String("string"),
    				},
    				StaticIpMac: &nsxt.PolicyHostTransportNodeProfileStandardHostSwitchIpv6AssignmentStaticIpMacArgs{
    					DefaultGateway: pulumi.String("string"),
    					IpMacPairs: nsxt.PolicyHostTransportNodeProfileStandardHostSwitchIpv6AssignmentStaticIpMacIpMacPairArray{
    						&nsxt.PolicyHostTransportNodeProfileStandardHostSwitchIpv6AssignmentStaticIpMacIpMacPairArgs{
    							IpAddress:  pulumi.String("string"),
    							MacAddress: pulumi.String("string"),
    						},
    					},
    					PrefixLength: pulumi.String("string"),
    				},
    				StaticIpPool: pulumi.String("string"),
    			},
    			IsMigratePnics: pulumi.Bool(false),
    			Pnics: nsxt.PolicyHostTransportNodeProfileStandardHostSwitchPnicArray{
    				&nsxt.PolicyHostTransportNodeProfileStandardHostSwitchPnicArgs{
    					DeviceName: pulumi.String("string"),
    					UplinkName: pulumi.String("string"),
    				},
    			},
    			TransportNodeProfileSubConfigs: nsxt.PolicyHostTransportNodeProfileStandardHostSwitchTransportNodeProfileSubConfigArray{
    				&nsxt.PolicyHostTransportNodeProfileStandardHostSwitchTransportNodeProfileSubConfigArgs{
    					HostSwitchConfigOption: &nsxt.PolicyHostTransportNodeProfileStandardHostSwitchTransportNodeProfileSubConfigHostSwitchConfigOptionArgs{
    						HostSwitchId: pulumi.String("string"),
    						IpAssignment: &nsxt.PolicyHostTransportNodeProfileStandardHostSwitchTransportNodeProfileSubConfigHostSwitchConfigOptionIpAssignmentArgs{
    							AssignedByDhcp: pulumi.Bool(false),
    							NoIpv4:         pulumi.Bool(false),
    							StaticIp: &nsxt.PolicyHostTransportNodeProfileStandardHostSwitchTransportNodeProfileSubConfigHostSwitchConfigOptionIpAssignmentStaticIpArgs{
    								DefaultGateway: pulumi.String("string"),
    								IpAddresses: pulumi.StringArray{
    									pulumi.String("string"),
    								},
    								SubnetMask: pulumi.String("string"),
    							},
    							StaticIpMac: &nsxt.PolicyHostTransportNodeProfileStandardHostSwitchTransportNodeProfileSubConfigHostSwitchConfigOptionIpAssignmentStaticIpMacArgs{
    								DefaultGateway: pulumi.String("string"),
    								IpMacPairs: nsxt.PolicyHostTransportNodeProfileStandardHostSwitchTransportNodeProfileSubConfigHostSwitchConfigOptionIpAssignmentStaticIpMacIpMacPairArray{
    									&nsxt.PolicyHostTransportNodeProfileStandardHostSwitchTransportNodeProfileSubConfigHostSwitchConfigOptionIpAssignmentStaticIpMacIpMacPairArgs{
    										IpAddress:  pulumi.String("string"),
    										MacAddress: pulumi.String("string"),
    									},
    								},
    								SubnetMask: pulumi.String("string"),
    							},
    							StaticIpPool: pulumi.String("string"),
    						},
    						Ipv6Assignment: &nsxt.PolicyHostTransportNodeProfileStandardHostSwitchTransportNodeProfileSubConfigHostSwitchConfigOptionIpv6AssignmentArgs{
    							AssignedByAutoconf: pulumi.Bool(false),
    							AssignedByDhcpv6:   pulumi.Bool(false),
    							NoIpv6:             pulumi.Bool(false),
    							StaticIp: &nsxt.PolicyHostTransportNodeProfileStandardHostSwitchTransportNodeProfileSubConfigHostSwitchConfigOptionIpv6AssignmentStaticIpArgs{
    								DefaultGateway: pulumi.String("string"),
    								IpAddresses: pulumi.StringArray{
    									pulumi.String("string"),
    								},
    								PrefixLength: pulumi.String("string"),
    							},
    							StaticIpMac: &nsxt.PolicyHostTransportNodeProfileStandardHostSwitchTransportNodeProfileSubConfigHostSwitchConfigOptionIpv6AssignmentStaticIpMacArgs{
    								DefaultGateway: pulumi.String("string"),
    								IpMacPairs: nsxt.PolicyHostTransportNodeProfileStandardHostSwitchTransportNodeProfileSubConfigHostSwitchConfigOptionIpv6AssignmentStaticIpMacIpMacPairArray{
    									&nsxt.PolicyHostTransportNodeProfileStandardHostSwitchTransportNodeProfileSubConfigHostSwitchConfigOptionIpv6AssignmentStaticIpMacIpMacPairArgs{
    										IpAddress:  pulumi.String("string"),
    										MacAddress: pulumi.String("string"),
    									},
    								},
    								PrefixLength: pulumi.String("string"),
    							},
    							StaticIpPool: pulumi.String("string"),
    						},
    						UplinkProfile: pulumi.String("string"),
    						Uplinks: nsxt.PolicyHostTransportNodeProfileStandardHostSwitchTransportNodeProfileSubConfigHostSwitchConfigOptionUplinkArray{
    							&nsxt.PolicyHostTransportNodeProfileStandardHostSwitchTransportNodeProfileSubConfigHostSwitchConfigOptionUplinkArgs{
    								UplinkName:    pulumi.String("string"),
    								VdsLagName:    pulumi.String("string"),
    								VdsUplinkName: pulumi.String("string"),
    							},
    						},
    						VtepHaProfile: pulumi.String("string"),
    					},
    					Name: pulumi.String("string"),
    				},
    			},
    			TransportZoneEndpoints: nsxt.PolicyHostTransportNodeProfileStandardHostSwitchTransportZoneEndpointArray{
    				&nsxt.PolicyHostTransportNodeProfileStandardHostSwitchTransportZoneEndpointArgs{
    					TransportZone: pulumi.String("string"),
    					TransportZoneProfiles: pulumi.StringArray{
    						pulumi.String("string"),
    					},
    				},
    			},
    			UplinkProfile: pulumi.String("string"),
    			Uplinks: nsxt.PolicyHostTransportNodeProfileStandardHostSwitchUplinkArray{
    				&nsxt.PolicyHostTransportNodeProfileStandardHostSwitchUplinkArgs{
    					UplinkName:    pulumi.String("string"),
    					VdsLagName:    pulumi.String("string"),
    					VdsUplinkName: pulumi.String("string"),
    				},
    			},
    			VmkInstallMigrations: nsxt.PolicyHostTransportNodeProfileStandardHostSwitchVmkInstallMigrationArray{
    				&nsxt.PolicyHostTransportNodeProfileStandardHostSwitchVmkInstallMigrationArgs{
    					DestinationNetwork: pulumi.String("string"),
    					DeviceName:         pulumi.String("string"),
    				},
    			},
    			VtepHaProfile: pulumi.String("string"),
    		},
    	},
    	Description:                      pulumi.String("string"),
    	IgnoreOverriddenHosts:            pulumi.Bool(false),
    	NsxId:                            pulumi.String("string"),
    	PolicyHostTransportNodeProfileId: pulumi.String("string"),
    	Tags: nsxt.PolicyHostTransportNodeProfileTagArray{
    		&nsxt.PolicyHostTransportNodeProfileTagArgs{
    			Scope: pulumi.String("string"),
    			Tag:   pulumi.String("string"),
    		},
    	},
    })
    
    var policyHostTransportNodeProfileResource = new PolicyHostTransportNodeProfile("policyHostTransportNodeProfileResource", PolicyHostTransportNodeProfileArgs.builder()
        .displayName("string")
        .standardHostSwitches(PolicyHostTransportNodeProfileStandardHostSwitchArgs.builder()
            .cpuConfigs(PolicyHostTransportNodeProfileStandardHostSwitchCpuConfigArgs.builder()
                .numLcores(0)
                .numaNodeIndex(0)
                .build())
            .hostSwitchId("string")
            .hostSwitchMode("string")
            .hostSwitchName("string")
            .ipAssignment(PolicyHostTransportNodeProfileStandardHostSwitchIpAssignmentArgs.builder()
                .assignedByDhcp(false)
                .noIpv4(false)
                .staticIp(PolicyHostTransportNodeProfileStandardHostSwitchIpAssignmentStaticIpArgs.builder()
                    .defaultGateway("string")
                    .ipAddresses("string")
                    .subnetMask("string")
                    .build())
                .staticIpMac(PolicyHostTransportNodeProfileStandardHostSwitchIpAssignmentStaticIpMacArgs.builder()
                    .defaultGateway("string")
                    .ipMacPairs(PolicyHostTransportNodeProfileStandardHostSwitchIpAssignmentStaticIpMacIpMacPairArgs.builder()
                        .ipAddress("string")
                        .macAddress("string")
                        .build())
                    .subnetMask("string")
                    .build())
                .staticIpPool("string")
                .build())
            .ipv6Assignment(PolicyHostTransportNodeProfileStandardHostSwitchIpv6AssignmentArgs.builder()
                .assignedByAutoconf(false)
                .assignedByDhcpv6(false)
                .noIpv6(false)
                .staticIp(PolicyHostTransportNodeProfileStandardHostSwitchIpv6AssignmentStaticIpArgs.builder()
                    .defaultGateway("string")
                    .ipAddresses("string")
                    .prefixLength("string")
                    .build())
                .staticIpMac(PolicyHostTransportNodeProfileStandardHostSwitchIpv6AssignmentStaticIpMacArgs.builder()
                    .defaultGateway("string")
                    .ipMacPairs(PolicyHostTransportNodeProfileStandardHostSwitchIpv6AssignmentStaticIpMacIpMacPairArgs.builder()
                        .ipAddress("string")
                        .macAddress("string")
                        .build())
                    .prefixLength("string")
                    .build())
                .staticIpPool("string")
                .build())
            .isMigratePnics(false)
            .pnics(PolicyHostTransportNodeProfileStandardHostSwitchPnicArgs.builder()
                .deviceName("string")
                .uplinkName("string")
                .build())
            .transportNodeProfileSubConfigs(PolicyHostTransportNodeProfileStandardHostSwitchTransportNodeProfileSubConfigArgs.builder()
                .hostSwitchConfigOption(PolicyHostTransportNodeProfileStandardHostSwitchTransportNodeProfileSubConfigHostSwitchConfigOptionArgs.builder()
                    .hostSwitchId("string")
                    .ipAssignment(PolicyHostTransportNodeProfileStandardHostSwitchTransportNodeProfileSubConfigHostSwitchConfigOptionIpAssignmentArgs.builder()
                        .assignedByDhcp(false)
                        .noIpv4(false)
                        .staticIp(PolicyHostTransportNodeProfileStandardHostSwitchTransportNodeProfileSubConfigHostSwitchConfigOptionIpAssignmentStaticIpArgs.builder()
                            .defaultGateway("string")
                            .ipAddresses("string")
                            .subnetMask("string")
                            .build())
                        .staticIpMac(PolicyHostTransportNodeProfileStandardHostSwitchTransportNodeProfileSubConfigHostSwitchConfigOptionIpAssignmentStaticIpMacArgs.builder()
                            .defaultGateway("string")
                            .ipMacPairs(PolicyHostTransportNodeProfileStandardHostSwitchTransportNodeProfileSubConfigHostSwitchConfigOptionIpAssignmentStaticIpMacIpMacPairArgs.builder()
                                .ipAddress("string")
                                .macAddress("string")
                                .build())
                            .subnetMask("string")
                            .build())
                        .staticIpPool("string")
                        .build())
                    .ipv6Assignment(PolicyHostTransportNodeProfileStandardHostSwitchTransportNodeProfileSubConfigHostSwitchConfigOptionIpv6AssignmentArgs.builder()
                        .assignedByAutoconf(false)
                        .assignedByDhcpv6(false)
                        .noIpv6(false)
                        .staticIp(PolicyHostTransportNodeProfileStandardHostSwitchTransportNodeProfileSubConfigHostSwitchConfigOptionIpv6AssignmentStaticIpArgs.builder()
                            .defaultGateway("string")
                            .ipAddresses("string")
                            .prefixLength("string")
                            .build())
                        .staticIpMac(PolicyHostTransportNodeProfileStandardHostSwitchTransportNodeProfileSubConfigHostSwitchConfigOptionIpv6AssignmentStaticIpMacArgs.builder()
                            .defaultGateway("string")
                            .ipMacPairs(PolicyHostTransportNodeProfileStandardHostSwitchTransportNodeProfileSubConfigHostSwitchConfigOptionIpv6AssignmentStaticIpMacIpMacPairArgs.builder()
                                .ipAddress("string")
                                .macAddress("string")
                                .build())
                            .prefixLength("string")
                            .build())
                        .staticIpPool("string")
                        .build())
                    .uplinkProfile("string")
                    .uplinks(PolicyHostTransportNodeProfileStandardHostSwitchTransportNodeProfileSubConfigHostSwitchConfigOptionUplinkArgs.builder()
                        .uplinkName("string")
                        .vdsLagName("string")
                        .vdsUplinkName("string")
                        .build())
                    .vtepHaProfile("string")
                    .build())
                .name("string")
                .build())
            .transportZoneEndpoints(PolicyHostTransportNodeProfileStandardHostSwitchTransportZoneEndpointArgs.builder()
                .transportZone("string")
                .transportZoneProfiles("string")
                .build())
            .uplinkProfile("string")
            .uplinks(PolicyHostTransportNodeProfileStandardHostSwitchUplinkArgs.builder()
                .uplinkName("string")
                .vdsLagName("string")
                .vdsUplinkName("string")
                .build())
            .vmkInstallMigrations(PolicyHostTransportNodeProfileStandardHostSwitchVmkInstallMigrationArgs.builder()
                .destinationNetwork("string")
                .deviceName("string")
                .build())
            .vtepHaProfile("string")
            .build())
        .description("string")
        .ignoreOverriddenHosts(false)
        .nsxId("string")
        .policyHostTransportNodeProfileId("string")
        .tags(PolicyHostTransportNodeProfileTagArgs.builder()
            .scope("string")
            .tag("string")
            .build())
        .build());
    
    policy_host_transport_node_profile_resource = nsxt.PolicyHostTransportNodeProfile("policyHostTransportNodeProfileResource",
        display_name="string",
        standard_host_switches=[{
            "cpu_configs": [{
                "num_lcores": 0,
                "numa_node_index": 0,
            }],
            "host_switch_id": "string",
            "host_switch_mode": "string",
            "host_switch_name": "string",
            "ip_assignment": {
                "assigned_by_dhcp": False,
                "no_ipv4": False,
                "static_ip": {
                    "default_gateway": "string",
                    "ip_addresses": ["string"],
                    "subnet_mask": "string",
                },
                "static_ip_mac": {
                    "default_gateway": "string",
                    "ip_mac_pairs": [{
                        "ip_address": "string",
                        "mac_address": "string",
                    }],
                    "subnet_mask": "string",
                },
                "static_ip_pool": "string",
            },
            "ipv6_assignment": {
                "assigned_by_autoconf": False,
                "assigned_by_dhcpv6": False,
                "no_ipv6": False,
                "static_ip": {
                    "default_gateway": "string",
                    "ip_addresses": ["string"],
                    "prefix_length": "string",
                },
                "static_ip_mac": {
                    "default_gateway": "string",
                    "ip_mac_pairs": [{
                        "ip_address": "string",
                        "mac_address": "string",
                    }],
                    "prefix_length": "string",
                },
                "static_ip_pool": "string",
            },
            "is_migrate_pnics": False,
            "pnics": [{
                "device_name": "string",
                "uplink_name": "string",
            }],
            "transport_node_profile_sub_configs": [{
                "host_switch_config_option": {
                    "host_switch_id": "string",
                    "ip_assignment": {
                        "assigned_by_dhcp": False,
                        "no_ipv4": False,
                        "static_ip": {
                            "default_gateway": "string",
                            "ip_addresses": ["string"],
                            "subnet_mask": "string",
                        },
                        "static_ip_mac": {
                            "default_gateway": "string",
                            "ip_mac_pairs": [{
                                "ip_address": "string",
                                "mac_address": "string",
                            }],
                            "subnet_mask": "string",
                        },
                        "static_ip_pool": "string",
                    },
                    "ipv6_assignment": {
                        "assigned_by_autoconf": False,
                        "assigned_by_dhcpv6": False,
                        "no_ipv6": False,
                        "static_ip": {
                            "default_gateway": "string",
                            "ip_addresses": ["string"],
                            "prefix_length": "string",
                        },
                        "static_ip_mac": {
                            "default_gateway": "string",
                            "ip_mac_pairs": [{
                                "ip_address": "string",
                                "mac_address": "string",
                            }],
                            "prefix_length": "string",
                        },
                        "static_ip_pool": "string",
                    },
                    "uplink_profile": "string",
                    "uplinks": [{
                        "uplink_name": "string",
                        "vds_lag_name": "string",
                        "vds_uplink_name": "string",
                    }],
                    "vtep_ha_profile": "string",
                },
                "name": "string",
            }],
            "transport_zone_endpoints": [{
                "transport_zone": "string",
                "transport_zone_profiles": ["string"],
            }],
            "uplink_profile": "string",
            "uplinks": [{
                "uplink_name": "string",
                "vds_lag_name": "string",
                "vds_uplink_name": "string",
            }],
            "vmk_install_migrations": [{
                "destination_network": "string",
                "device_name": "string",
            }],
            "vtep_ha_profile": "string",
        }],
        description="string",
        ignore_overridden_hosts=False,
        nsx_id="string",
        policy_host_transport_node_profile_id="string",
        tags=[{
            "scope": "string",
            "tag": "string",
        }])
    
    const policyHostTransportNodeProfileResource = new nsxt.PolicyHostTransportNodeProfile("policyHostTransportNodeProfileResource", {
        displayName: "string",
        standardHostSwitches: [{
            cpuConfigs: [{
                numLcores: 0,
                numaNodeIndex: 0,
            }],
            hostSwitchId: "string",
            hostSwitchMode: "string",
            hostSwitchName: "string",
            ipAssignment: {
                assignedByDhcp: false,
                noIpv4: false,
                staticIp: {
                    defaultGateway: "string",
                    ipAddresses: ["string"],
                    subnetMask: "string",
                },
                staticIpMac: {
                    defaultGateway: "string",
                    ipMacPairs: [{
                        ipAddress: "string",
                        macAddress: "string",
                    }],
                    subnetMask: "string",
                },
                staticIpPool: "string",
            },
            ipv6Assignment: {
                assignedByAutoconf: false,
                assignedByDhcpv6: false,
                noIpv6: false,
                staticIp: {
                    defaultGateway: "string",
                    ipAddresses: ["string"],
                    prefixLength: "string",
                },
                staticIpMac: {
                    defaultGateway: "string",
                    ipMacPairs: [{
                        ipAddress: "string",
                        macAddress: "string",
                    }],
                    prefixLength: "string",
                },
                staticIpPool: "string",
            },
            isMigratePnics: false,
            pnics: [{
                deviceName: "string",
                uplinkName: "string",
            }],
            transportNodeProfileSubConfigs: [{
                hostSwitchConfigOption: {
                    hostSwitchId: "string",
                    ipAssignment: {
                        assignedByDhcp: false,
                        noIpv4: false,
                        staticIp: {
                            defaultGateway: "string",
                            ipAddresses: ["string"],
                            subnetMask: "string",
                        },
                        staticIpMac: {
                            defaultGateway: "string",
                            ipMacPairs: [{
                                ipAddress: "string",
                                macAddress: "string",
                            }],
                            subnetMask: "string",
                        },
                        staticIpPool: "string",
                    },
                    ipv6Assignment: {
                        assignedByAutoconf: false,
                        assignedByDhcpv6: false,
                        noIpv6: false,
                        staticIp: {
                            defaultGateway: "string",
                            ipAddresses: ["string"],
                            prefixLength: "string",
                        },
                        staticIpMac: {
                            defaultGateway: "string",
                            ipMacPairs: [{
                                ipAddress: "string",
                                macAddress: "string",
                            }],
                            prefixLength: "string",
                        },
                        staticIpPool: "string",
                    },
                    uplinkProfile: "string",
                    uplinks: [{
                        uplinkName: "string",
                        vdsLagName: "string",
                        vdsUplinkName: "string",
                    }],
                    vtepHaProfile: "string",
                },
                name: "string",
            }],
            transportZoneEndpoints: [{
                transportZone: "string",
                transportZoneProfiles: ["string"],
            }],
            uplinkProfile: "string",
            uplinks: [{
                uplinkName: "string",
                vdsLagName: "string",
                vdsUplinkName: "string",
            }],
            vmkInstallMigrations: [{
                destinationNetwork: "string",
                deviceName: "string",
            }],
            vtepHaProfile: "string",
        }],
        description: "string",
        ignoreOverriddenHosts: false,
        nsxId: "string",
        policyHostTransportNodeProfileId: "string",
        tags: [{
            scope: "string",
            tag: "string",
        }],
    });
    
    type: nsxt:PolicyHostTransportNodeProfile
    properties:
        description: string
        displayName: string
        ignoreOverriddenHosts: false
        nsxId: string
        policyHostTransportNodeProfileId: string
        standardHostSwitches:
            - cpuConfigs:
                - numLcores: 0
                  numaNodeIndex: 0
              hostSwitchId: string
              hostSwitchMode: string
              hostSwitchName: string
              ipAssignment:
                assignedByDhcp: false
                noIpv4: false
                staticIp:
                    defaultGateway: string
                    ipAddresses:
                        - string
                    subnetMask: string
                staticIpMac:
                    defaultGateway: string
                    ipMacPairs:
                        - ipAddress: string
                          macAddress: string
                    subnetMask: string
                staticIpPool: string
              ipv6Assignment:
                assignedByAutoconf: false
                assignedByDhcpv6: false
                noIpv6: false
                staticIp:
                    defaultGateway: string
                    ipAddresses:
                        - string
                    prefixLength: string
                staticIpMac:
                    defaultGateway: string
                    ipMacPairs:
                        - ipAddress: string
                          macAddress: string
                    prefixLength: string
                staticIpPool: string
              isMigratePnics: false
              pnics:
                - deviceName: string
                  uplinkName: string
              transportNodeProfileSubConfigs:
                - hostSwitchConfigOption:
                    hostSwitchId: string
                    ipAssignment:
                        assignedByDhcp: false
                        noIpv4: false
                        staticIp:
                            defaultGateway: string
                            ipAddresses:
                                - string
                            subnetMask: string
                        staticIpMac:
                            defaultGateway: string
                            ipMacPairs:
                                - ipAddress: string
                                  macAddress: string
                            subnetMask: string
                        staticIpPool: string
                    ipv6Assignment:
                        assignedByAutoconf: false
                        assignedByDhcpv6: false
                        noIpv6: false
                        staticIp:
                            defaultGateway: string
                            ipAddresses:
                                - string
                            prefixLength: string
                        staticIpMac:
                            defaultGateway: string
                            ipMacPairs:
                                - ipAddress: string
                                  macAddress: string
                            prefixLength: string
                        staticIpPool: string
                    uplinkProfile: string
                    uplinks:
                        - uplinkName: string
                          vdsLagName: string
                          vdsUplinkName: string
                    vtepHaProfile: string
                  name: string
              transportZoneEndpoints:
                - transportZone: string
                  transportZoneProfiles:
                    - string
              uplinkProfile: string
              uplinks:
                - uplinkName: string
                  vdsLagName: string
                  vdsUplinkName: string
              vmkInstallMigrations:
                - destinationNetwork: string
                  deviceName: string
              vtepHaProfile: string
        tags:
            - scope: string
              tag: string
    

    PolicyHostTransportNodeProfile 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 PolicyHostTransportNodeProfile resource accepts the following input properties:

    DisplayName string
    Display name of the resource.
    StandardHostSwitches List<PolicyHostTransportNodeProfileStandardHostSwitch>
    Standard host switch specification.
    Description string
    Description of the resource.
    IgnoreOverriddenHosts bool
    Determines if cluster-level configuration should be applied on overridden hosts
    NsxId string
    NSX ID for this resource
    PolicyHostTransportNodeProfileId string
    ID of the resource.
    Tags List<PolicyHostTransportNodeProfileTag>
    A list of scope + tag pairs to associate with this resource.
    DisplayName string
    Display name of the resource.
    StandardHostSwitches []PolicyHostTransportNodeProfileStandardHostSwitchArgs
    Standard host switch specification.
    Description string
    Description of the resource.
    IgnoreOverriddenHosts bool
    Determines if cluster-level configuration should be applied on overridden hosts
    NsxId string
    NSX ID for this resource
    PolicyHostTransportNodeProfileId string
    ID of the resource.
    Tags []PolicyHostTransportNodeProfileTagArgs
    A list of scope + tag pairs to associate with this resource.
    displayName String
    Display name of the resource.
    standardHostSwitches List<PolicyHostTransportNodeProfileStandardHostSwitch>
    Standard host switch specification.
    description String
    Description of the resource.
    ignoreOverriddenHosts Boolean
    Determines if cluster-level configuration should be applied on overridden hosts
    nsxId String
    NSX ID for this resource
    policyHostTransportNodeProfileId String
    ID of the resource.
    tags List<PolicyHostTransportNodeProfileTag>
    A list of scope + tag pairs to associate with this resource.
    displayName string
    Display name of the resource.
    standardHostSwitches PolicyHostTransportNodeProfileStandardHostSwitch[]
    Standard host switch specification.
    description string
    Description of the resource.
    ignoreOverriddenHosts boolean
    Determines if cluster-level configuration should be applied on overridden hosts
    nsxId string
    NSX ID for this resource
    policyHostTransportNodeProfileId string
    ID of the resource.
    tags PolicyHostTransportNodeProfileTag[]
    A list of scope + tag pairs to associate with this resource.
    display_name str
    Display name of the resource.
    standard_host_switches Sequence[PolicyHostTransportNodeProfileStandardHostSwitchArgs]
    Standard host switch specification.
    description str
    Description of the resource.
    ignore_overridden_hosts bool
    Determines if cluster-level configuration should be applied on overridden hosts
    nsx_id str
    NSX ID for this resource
    policy_host_transport_node_profile_id str
    ID of the resource.
    tags Sequence[PolicyHostTransportNodeProfileTagArgs]
    A list of scope + tag pairs to associate with this resource.
    displayName String
    Display name of the resource.
    standardHostSwitches List<Property Map>
    Standard host switch specification.
    description String
    Description of the resource.
    ignoreOverriddenHosts Boolean
    Determines if cluster-level configuration should be applied on overridden hosts
    nsxId String
    NSX ID for this resource
    policyHostTransportNodeProfileId String
    ID of the resource.
    tags List<Property Map>
    A list of scope + tag pairs to associate with this resource.

    Outputs

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

    Id string
    The provider-assigned unique ID for this managed resource.
    Path string
    Policy path for this resource
    Revision double
    Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
    Id string
    The provider-assigned unique ID for this managed resource.
    Path string
    Policy path for this resource
    Revision float64
    Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
    id String
    The provider-assigned unique ID for this managed resource.
    path String
    Policy path for this resource
    revision Double
    Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
    id string
    The provider-assigned unique ID for this managed resource.
    path string
    Policy path for this resource
    revision number
    Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
    id str
    The provider-assigned unique ID for this managed resource.
    path str
    Policy path for this resource
    revision float
    Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
    id String
    The provider-assigned unique ID for this managed resource.
    path String
    Policy path for this resource
    revision Number
    Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.

    Look up Existing PolicyHostTransportNodeProfile Resource

    Get an existing PolicyHostTransportNodeProfile 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?: PolicyHostTransportNodeProfileState, opts?: CustomResourceOptions): PolicyHostTransportNodeProfile
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            description: Optional[str] = None,
            display_name: Optional[str] = None,
            ignore_overridden_hosts: Optional[bool] = None,
            nsx_id: Optional[str] = None,
            path: Optional[str] = None,
            policy_host_transport_node_profile_id: Optional[str] = None,
            revision: Optional[float] = None,
            standard_host_switches: Optional[Sequence[PolicyHostTransportNodeProfileStandardHostSwitchArgs]] = None,
            tags: Optional[Sequence[PolicyHostTransportNodeProfileTagArgs]] = None) -> PolicyHostTransportNodeProfile
    func GetPolicyHostTransportNodeProfile(ctx *Context, name string, id IDInput, state *PolicyHostTransportNodeProfileState, opts ...ResourceOption) (*PolicyHostTransportNodeProfile, error)
    public static PolicyHostTransportNodeProfile Get(string name, Input<string> id, PolicyHostTransportNodeProfileState? state, CustomResourceOptions? opts = null)
    public static PolicyHostTransportNodeProfile get(String name, Output<String> id, PolicyHostTransportNodeProfileState state, CustomResourceOptions options)
    resources:  _:    type: nsxt:PolicyHostTransportNodeProfile    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:
    Description string
    Description of the resource.
    DisplayName string
    Display name of the resource.
    IgnoreOverriddenHosts bool
    Determines if cluster-level configuration should be applied on overridden hosts
    NsxId string
    NSX ID for this resource
    Path string
    Policy path for this resource
    PolicyHostTransportNodeProfileId string
    ID of the resource.
    Revision double
    Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
    StandardHostSwitches List<PolicyHostTransportNodeProfileStandardHostSwitch>
    Standard host switch specification.
    Tags List<PolicyHostTransportNodeProfileTag>
    A list of scope + tag pairs to associate with this resource.
    Description string
    Description of the resource.
    DisplayName string
    Display name of the resource.
    IgnoreOverriddenHosts bool
    Determines if cluster-level configuration should be applied on overridden hosts
    NsxId string
    NSX ID for this resource
    Path string
    Policy path for this resource
    PolicyHostTransportNodeProfileId string
    ID of the resource.
    Revision float64
    Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
    StandardHostSwitches []PolicyHostTransportNodeProfileStandardHostSwitchArgs
    Standard host switch specification.
    Tags []PolicyHostTransportNodeProfileTagArgs
    A list of scope + tag pairs to associate with this resource.
    description String
    Description of the resource.
    displayName String
    Display name of the resource.
    ignoreOverriddenHosts Boolean
    Determines if cluster-level configuration should be applied on overridden hosts
    nsxId String
    NSX ID for this resource
    path String
    Policy path for this resource
    policyHostTransportNodeProfileId String
    ID of the resource.
    revision Double
    Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
    standardHostSwitches List<PolicyHostTransportNodeProfileStandardHostSwitch>
    Standard host switch specification.
    tags List<PolicyHostTransportNodeProfileTag>
    A list of scope + tag pairs to associate with this resource.
    description string
    Description of the resource.
    displayName string
    Display name of the resource.
    ignoreOverriddenHosts boolean
    Determines if cluster-level configuration should be applied on overridden hosts
    nsxId string
    NSX ID for this resource
    path string
    Policy path for this resource
    policyHostTransportNodeProfileId string
    ID of the resource.
    revision number
    Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
    standardHostSwitches PolicyHostTransportNodeProfileStandardHostSwitch[]
    Standard host switch specification.
    tags PolicyHostTransportNodeProfileTag[]
    A list of scope + tag pairs to associate with this resource.
    description str
    Description of the resource.
    display_name str
    Display name of the resource.
    ignore_overridden_hosts bool
    Determines if cluster-level configuration should be applied on overridden hosts
    nsx_id str
    NSX ID for this resource
    path str
    Policy path for this resource
    policy_host_transport_node_profile_id str
    ID of the resource.
    revision float
    Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
    standard_host_switches Sequence[PolicyHostTransportNodeProfileStandardHostSwitchArgs]
    Standard host switch specification.
    tags Sequence[PolicyHostTransportNodeProfileTagArgs]
    A list of scope + tag pairs to associate with this resource.
    description String
    Description of the resource.
    displayName String
    Display name of the resource.
    ignoreOverriddenHosts Boolean
    Determines if cluster-level configuration should be applied on overridden hosts
    nsxId String
    NSX ID for this resource
    path String
    Policy path for this resource
    policyHostTransportNodeProfileId String
    ID of the resource.
    revision Number
    Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
    standardHostSwitches List<Property Map>
    Standard host switch specification.
    tags List<Property Map>
    A list of scope + tag pairs to associate with this resource.

    Supporting Types

    PolicyHostTransportNodeProfileStandardHostSwitch, PolicyHostTransportNodeProfileStandardHostSwitchArgs

    CpuConfigs List<PolicyHostTransportNodeProfileStandardHostSwitchCpuConfig>
    Enhanced Networking Stack enabled HostSwitch CPU configuration
    HostSwitchId string
    The host switch id. This ID will be used to reference a host switch.
    HostSwitchMode string
    Operational mode of a HostSwitch. Accepted values - 'STANDARD', 'ENS', 'ENS_INTERRUPT' or 'LEGACY'.
    HostSwitchName string
    Host switch name. This name will be used to reference a host switch.
    HostSwitchProfiles List<string>
    Policy paths of host switch profiles to be associated with this host switch. This attribute is deprecated, please use type-specific attribute instead (such as uplink_profile)

    Deprecated: Deprecated

    IpAssignment PolicyHostTransportNodeProfileStandardHostSwitchIpAssignment
    Specification for IPs to be used with host switch virtual tunnel endpoints. Should contain exactly one of the below:
    Ipv6Assignment PolicyHostTransportNodeProfileStandardHostSwitchIpv6Assignment
    Specification for IPv6 to be used with host switch virtual tunnel endpoints
    IsMigratePnics bool
    Migrate any pnics which are in use.
    Pnics List<PolicyHostTransportNodeProfileStandardHostSwitchPnic>
    Physical NICs connected to the host switch.
    TransportNodeProfileSubConfigs List<PolicyHostTransportNodeProfileStandardHostSwitchTransportNodeProfileSubConfig>
    Transport Node Profile sub-configuration Options.
    TransportZoneEndpoints List<PolicyHostTransportNodeProfileStandardHostSwitchTransportZoneEndpoint>
    Transport zone endpoints
    UplinkProfile string
    Uplink host switch profile path.
    Uplinks List<PolicyHostTransportNodeProfileStandardHostSwitchUplink>
    Uplink/LAG of VMware vSphere Distributed Switch connected to the HostSwitch.
    VmkInstallMigrations List<PolicyHostTransportNodeProfileStandardHostSwitchVmkInstallMigration>
    The vmknic and logical switch mappings.
    VtepHaProfile string
    VTEP high availablility host switch profile path. Only applicable with VDS switch.
    CpuConfigs []PolicyHostTransportNodeProfileStandardHostSwitchCpuConfig
    Enhanced Networking Stack enabled HostSwitch CPU configuration
    HostSwitchId string
    The host switch id. This ID will be used to reference a host switch.
    HostSwitchMode string
    Operational mode of a HostSwitch. Accepted values - 'STANDARD', 'ENS', 'ENS_INTERRUPT' or 'LEGACY'.
    HostSwitchName string
    Host switch name. This name will be used to reference a host switch.
    HostSwitchProfiles []string
    Policy paths of host switch profiles to be associated with this host switch. This attribute is deprecated, please use type-specific attribute instead (such as uplink_profile)

    Deprecated: Deprecated

    IpAssignment PolicyHostTransportNodeProfileStandardHostSwitchIpAssignment
    Specification for IPs to be used with host switch virtual tunnel endpoints. Should contain exactly one of the below:
    Ipv6Assignment PolicyHostTransportNodeProfileStandardHostSwitchIpv6Assignment
    Specification for IPv6 to be used with host switch virtual tunnel endpoints
    IsMigratePnics bool
    Migrate any pnics which are in use.
    Pnics []PolicyHostTransportNodeProfileStandardHostSwitchPnic
    Physical NICs connected to the host switch.
    TransportNodeProfileSubConfigs []PolicyHostTransportNodeProfileStandardHostSwitchTransportNodeProfileSubConfig
    Transport Node Profile sub-configuration Options.
    TransportZoneEndpoints []PolicyHostTransportNodeProfileStandardHostSwitchTransportZoneEndpoint
    Transport zone endpoints
    UplinkProfile string
    Uplink host switch profile path.
    Uplinks []PolicyHostTransportNodeProfileStandardHostSwitchUplink
    Uplink/LAG of VMware vSphere Distributed Switch connected to the HostSwitch.
    VmkInstallMigrations []PolicyHostTransportNodeProfileStandardHostSwitchVmkInstallMigration
    The vmknic and logical switch mappings.
    VtepHaProfile string
    VTEP high availablility host switch profile path. Only applicable with VDS switch.
    cpuConfigs List<PolicyHostTransportNodeProfileStandardHostSwitchCpuConfig>
    Enhanced Networking Stack enabled HostSwitch CPU configuration
    hostSwitchId String
    The host switch id. This ID will be used to reference a host switch.
    hostSwitchMode String
    Operational mode of a HostSwitch. Accepted values - 'STANDARD', 'ENS', 'ENS_INTERRUPT' or 'LEGACY'.
    hostSwitchName String
    Host switch name. This name will be used to reference a host switch.
    hostSwitchProfiles List<String>
    Policy paths of host switch profiles to be associated with this host switch. This attribute is deprecated, please use type-specific attribute instead (such as uplink_profile)

    Deprecated: Deprecated

    ipAssignment PolicyHostTransportNodeProfileStandardHostSwitchIpAssignment
    Specification for IPs to be used with host switch virtual tunnel endpoints. Should contain exactly one of the below:
    ipv6Assignment PolicyHostTransportNodeProfileStandardHostSwitchIpv6Assignment
    Specification for IPv6 to be used with host switch virtual tunnel endpoints
    isMigratePnics Boolean
    Migrate any pnics which are in use.
    pnics List<PolicyHostTransportNodeProfileStandardHostSwitchPnic>
    Physical NICs connected to the host switch.
    transportNodeProfileSubConfigs List<PolicyHostTransportNodeProfileStandardHostSwitchTransportNodeProfileSubConfig>
    Transport Node Profile sub-configuration Options.
    transportZoneEndpoints List<PolicyHostTransportNodeProfileStandardHostSwitchTransportZoneEndpoint>
    Transport zone endpoints
    uplinkProfile String
    Uplink host switch profile path.
    uplinks List<PolicyHostTransportNodeProfileStandardHostSwitchUplink>
    Uplink/LAG of VMware vSphere Distributed Switch connected to the HostSwitch.
    vmkInstallMigrations List<PolicyHostTransportNodeProfileStandardHostSwitchVmkInstallMigration>
    The vmknic and logical switch mappings.
    vtepHaProfile String
    VTEP high availablility host switch profile path. Only applicable with VDS switch.
    cpuConfigs PolicyHostTransportNodeProfileStandardHostSwitchCpuConfig[]
    Enhanced Networking Stack enabled HostSwitch CPU configuration
    hostSwitchId string
    The host switch id. This ID will be used to reference a host switch.
    hostSwitchMode string
    Operational mode of a HostSwitch. Accepted values - 'STANDARD', 'ENS', 'ENS_INTERRUPT' or 'LEGACY'.
    hostSwitchName string
    Host switch name. This name will be used to reference a host switch.
    hostSwitchProfiles string[]
    Policy paths of host switch profiles to be associated with this host switch. This attribute is deprecated, please use type-specific attribute instead (such as uplink_profile)

    Deprecated: Deprecated

    ipAssignment PolicyHostTransportNodeProfileStandardHostSwitchIpAssignment
    Specification for IPs to be used with host switch virtual tunnel endpoints. Should contain exactly one of the below:
    ipv6Assignment PolicyHostTransportNodeProfileStandardHostSwitchIpv6Assignment
    Specification for IPv6 to be used with host switch virtual tunnel endpoints
    isMigratePnics boolean
    Migrate any pnics which are in use.
    pnics PolicyHostTransportNodeProfileStandardHostSwitchPnic[]
    Physical NICs connected to the host switch.
    transportNodeProfileSubConfigs PolicyHostTransportNodeProfileStandardHostSwitchTransportNodeProfileSubConfig[]
    Transport Node Profile sub-configuration Options.
    transportZoneEndpoints PolicyHostTransportNodeProfileStandardHostSwitchTransportZoneEndpoint[]
    Transport zone endpoints
    uplinkProfile string
    Uplink host switch profile path.
    uplinks PolicyHostTransportNodeProfileStandardHostSwitchUplink[]
    Uplink/LAG of VMware vSphere Distributed Switch connected to the HostSwitch.
    vmkInstallMigrations PolicyHostTransportNodeProfileStandardHostSwitchVmkInstallMigration[]
    The vmknic and logical switch mappings.
    vtepHaProfile string
    VTEP high availablility host switch profile path. Only applicable with VDS switch.
    cpu_configs Sequence[PolicyHostTransportNodeProfileStandardHostSwitchCpuConfig]
    Enhanced Networking Stack enabled HostSwitch CPU configuration
    host_switch_id str
    The host switch id. This ID will be used to reference a host switch.
    host_switch_mode str
    Operational mode of a HostSwitch. Accepted values - 'STANDARD', 'ENS', 'ENS_INTERRUPT' or 'LEGACY'.
    host_switch_name str
    Host switch name. This name will be used to reference a host switch.
    host_switch_profiles Sequence[str]
    Policy paths of host switch profiles to be associated with this host switch. This attribute is deprecated, please use type-specific attribute instead (such as uplink_profile)

    Deprecated: Deprecated

    ip_assignment PolicyHostTransportNodeProfileStandardHostSwitchIpAssignment
    Specification for IPs to be used with host switch virtual tunnel endpoints. Should contain exactly one of the below:
    ipv6_assignment PolicyHostTransportNodeProfileStandardHostSwitchIpv6Assignment
    Specification for IPv6 to be used with host switch virtual tunnel endpoints
    is_migrate_pnics bool
    Migrate any pnics which are in use.
    pnics Sequence[PolicyHostTransportNodeProfileStandardHostSwitchPnic]
    Physical NICs connected to the host switch.
    transport_node_profile_sub_configs Sequence[PolicyHostTransportNodeProfileStandardHostSwitchTransportNodeProfileSubConfig]
    Transport Node Profile sub-configuration Options.
    transport_zone_endpoints Sequence[PolicyHostTransportNodeProfileStandardHostSwitchTransportZoneEndpoint]
    Transport zone endpoints
    uplink_profile str
    Uplink host switch profile path.
    uplinks Sequence[PolicyHostTransportNodeProfileStandardHostSwitchUplink]
    Uplink/LAG of VMware vSphere Distributed Switch connected to the HostSwitch.
    vmk_install_migrations Sequence[PolicyHostTransportNodeProfileStandardHostSwitchVmkInstallMigration]
    The vmknic and logical switch mappings.
    vtep_ha_profile str
    VTEP high availablility host switch profile path. Only applicable with VDS switch.
    cpuConfigs List<Property Map>
    Enhanced Networking Stack enabled HostSwitch CPU configuration
    hostSwitchId String
    The host switch id. This ID will be used to reference a host switch.
    hostSwitchMode String
    Operational mode of a HostSwitch. Accepted values - 'STANDARD', 'ENS', 'ENS_INTERRUPT' or 'LEGACY'.
    hostSwitchName String
    Host switch name. This name will be used to reference a host switch.
    hostSwitchProfiles List<String>
    Policy paths of host switch profiles to be associated with this host switch. This attribute is deprecated, please use type-specific attribute instead (such as uplink_profile)

    Deprecated: Deprecated

    ipAssignment Property Map
    Specification for IPs to be used with host switch virtual tunnel endpoints. Should contain exactly one of the below:
    ipv6Assignment Property Map
    Specification for IPv6 to be used with host switch virtual tunnel endpoints
    isMigratePnics Boolean
    Migrate any pnics which are in use.
    pnics List<Property Map>
    Physical NICs connected to the host switch.
    transportNodeProfileSubConfigs List<Property Map>
    Transport Node Profile sub-configuration Options.
    transportZoneEndpoints List<Property Map>
    Transport zone endpoints
    uplinkProfile String
    Uplink host switch profile path.
    uplinks List<Property Map>
    Uplink/LAG of VMware vSphere Distributed Switch connected to the HostSwitch.
    vmkInstallMigrations List<Property Map>
    The vmknic and logical switch mappings.
    vtepHaProfile String
    VTEP high availablility host switch profile path. Only applicable with VDS switch.

    PolicyHostTransportNodeProfileStandardHostSwitchCpuConfig, PolicyHostTransportNodeProfileStandardHostSwitchCpuConfigArgs

    NumLcores double
    Number of Logical cpu cores (Lcores) to be placed on a specified NUMA node
    NumaNodeIndex double
    Unique index of the Non Uniform Memory Access (NUMA) node
    NumLcores float64
    Number of Logical cpu cores (Lcores) to be placed on a specified NUMA node
    NumaNodeIndex float64
    Unique index of the Non Uniform Memory Access (NUMA) node
    numLcores Double
    Number of Logical cpu cores (Lcores) to be placed on a specified NUMA node
    numaNodeIndex Double
    Unique index of the Non Uniform Memory Access (NUMA) node
    numLcores number
    Number of Logical cpu cores (Lcores) to be placed on a specified NUMA node
    numaNodeIndex number
    Unique index of the Non Uniform Memory Access (NUMA) node
    num_lcores float
    Number of Logical cpu cores (Lcores) to be placed on a specified NUMA node
    numa_node_index float
    Unique index of the Non Uniform Memory Access (NUMA) node
    numLcores Number
    Number of Logical cpu cores (Lcores) to be placed on a specified NUMA node
    numaNodeIndex Number
    Unique index of the Non Uniform Memory Access (NUMA) node

    PolicyHostTransportNodeProfileStandardHostSwitchIpAssignment, PolicyHostTransportNodeProfileStandardHostSwitchIpAssignmentArgs

    AssignedByDhcp bool
    Enables DHCP assignment.
    NoIpv4 bool
    No IPv4 assignment
    StaticIp PolicyHostTransportNodeProfileStandardHostSwitchIpAssignmentStaticIp
    IP assignment specification for Static IP List.
    StaticIpMac PolicyHostTransportNodeProfileStandardHostSwitchIpAssignmentStaticIpMac
    IP assignment specification for Static MAC List.
    StaticIpPool string
    IP assignment specification for Static IP Pool.
    AssignedByDhcp bool
    Enables DHCP assignment.
    NoIpv4 bool
    No IPv4 assignment
    StaticIp PolicyHostTransportNodeProfileStandardHostSwitchIpAssignmentStaticIp
    IP assignment specification for Static IP List.
    StaticIpMac PolicyHostTransportNodeProfileStandardHostSwitchIpAssignmentStaticIpMac
    IP assignment specification for Static MAC List.
    StaticIpPool string
    IP assignment specification for Static IP Pool.
    assignedByDhcp Boolean
    Enables DHCP assignment.
    noIpv4 Boolean
    No IPv4 assignment
    staticIp PolicyHostTransportNodeProfileStandardHostSwitchIpAssignmentStaticIp
    IP assignment specification for Static IP List.
    staticIpMac PolicyHostTransportNodeProfileStandardHostSwitchIpAssignmentStaticIpMac
    IP assignment specification for Static MAC List.
    staticIpPool String
    IP assignment specification for Static IP Pool.
    assignedByDhcp boolean
    Enables DHCP assignment.
    noIpv4 boolean
    No IPv4 assignment
    staticIp PolicyHostTransportNodeProfileStandardHostSwitchIpAssignmentStaticIp
    IP assignment specification for Static IP List.
    staticIpMac PolicyHostTransportNodeProfileStandardHostSwitchIpAssignmentStaticIpMac
    IP assignment specification for Static MAC List.
    staticIpPool string
    IP assignment specification for Static IP Pool.
    assigned_by_dhcp bool
    Enables DHCP assignment.
    no_ipv4 bool
    No IPv4 assignment
    static_ip PolicyHostTransportNodeProfileStandardHostSwitchIpAssignmentStaticIp
    IP assignment specification for Static IP List.
    static_ip_mac PolicyHostTransportNodeProfileStandardHostSwitchIpAssignmentStaticIpMac
    IP assignment specification for Static MAC List.
    static_ip_pool str
    IP assignment specification for Static IP Pool.
    assignedByDhcp Boolean
    Enables DHCP assignment.
    noIpv4 Boolean
    No IPv4 assignment
    staticIp Property Map
    IP assignment specification for Static IP List.
    staticIpMac Property Map
    IP assignment specification for Static MAC List.
    staticIpPool String
    IP assignment specification for Static IP Pool.

    PolicyHostTransportNodeProfileStandardHostSwitchIpAssignmentStaticIp, PolicyHostTransportNodeProfileStandardHostSwitchIpAssignmentStaticIpArgs

    DefaultGateway string
    Gateway IP.
    IpAddresses List<string>
    List of IPs for transport node host switch virtual tunnel endpoints.
    SubnetMask string
    Subnet mask.
    DefaultGateway string
    Gateway IP.
    IpAddresses []string
    List of IPs for transport node host switch virtual tunnel endpoints.
    SubnetMask string
    Subnet mask.
    defaultGateway String
    Gateway IP.
    ipAddresses List<String>
    List of IPs for transport node host switch virtual tunnel endpoints.
    subnetMask String
    Subnet mask.
    defaultGateway string
    Gateway IP.
    ipAddresses string[]
    List of IPs for transport node host switch virtual tunnel endpoints.
    subnetMask string
    Subnet mask.
    default_gateway str
    Gateway IP.
    ip_addresses Sequence[str]
    List of IPs for transport node host switch virtual tunnel endpoints.
    subnet_mask str
    Subnet mask.
    defaultGateway String
    Gateway IP.
    ipAddresses List<String>
    List of IPs for transport node host switch virtual tunnel endpoints.
    subnetMask String
    Subnet mask.

    PolicyHostTransportNodeProfileStandardHostSwitchIpAssignmentStaticIpMac, PolicyHostTransportNodeProfileStandardHostSwitchIpAssignmentStaticIpMacArgs

    defaultGateway String
    Gateway IP
    ipMacPairs List<Property Map>
    List of IP MAC pairs
    subnetMask String
    Subnet mask

    PolicyHostTransportNodeProfileStandardHostSwitchIpAssignmentStaticIpMacIpMacPair, PolicyHostTransportNodeProfileStandardHostSwitchIpAssignmentStaticIpMacIpMacPairArgs

    IpAddress string
    A single IPv6 address
    MacAddress string
    A single MAC address
    IpAddress string
    A single IPv6 address
    MacAddress string
    A single MAC address
    ipAddress String
    A single IPv6 address
    macAddress String
    A single MAC address
    ipAddress string
    A single IPv6 address
    macAddress string
    A single MAC address
    ip_address str
    A single IPv6 address
    mac_address str
    A single MAC address
    ipAddress String
    A single IPv6 address
    macAddress String
    A single MAC address

    PolicyHostTransportNodeProfileStandardHostSwitchIpv6Assignment, PolicyHostTransportNodeProfileStandardHostSwitchIpv6AssignmentArgs

    AssignedByAutoconf bool
    Enables autoconf assignment
    AssignedByDhcpv6 bool
    Enables DHCPv6 assignment
    NoIpv6 bool
    No IPv6 assignment
    StaticIp PolicyHostTransportNodeProfileStandardHostSwitchIpv6AssignmentStaticIp
    IP assignment specification for Static IP List.
    StaticIpMac PolicyHostTransportNodeProfileStandardHostSwitchIpv6AssignmentStaticIpMac
    IP assignment specification for Static MAC List.
    StaticIpPool string
    IP assignment specification for Static IP Pool
    AssignedByAutoconf bool
    Enables autoconf assignment
    AssignedByDhcpv6 bool
    Enables DHCPv6 assignment
    NoIpv6 bool
    No IPv6 assignment
    StaticIp PolicyHostTransportNodeProfileStandardHostSwitchIpv6AssignmentStaticIp
    IP assignment specification for Static IP List.
    StaticIpMac PolicyHostTransportNodeProfileStandardHostSwitchIpv6AssignmentStaticIpMac
    IP assignment specification for Static MAC List.
    StaticIpPool string
    IP assignment specification for Static IP Pool
    assignedByAutoconf Boolean
    Enables autoconf assignment
    assignedByDhcpv6 Boolean
    Enables DHCPv6 assignment
    noIpv6 Boolean
    No IPv6 assignment
    staticIp PolicyHostTransportNodeProfileStandardHostSwitchIpv6AssignmentStaticIp
    IP assignment specification for Static IP List.
    staticIpMac PolicyHostTransportNodeProfileStandardHostSwitchIpv6AssignmentStaticIpMac
    IP assignment specification for Static MAC List.
    staticIpPool String
    IP assignment specification for Static IP Pool
    assignedByAutoconf boolean
    Enables autoconf assignment
    assignedByDhcpv6 boolean
    Enables DHCPv6 assignment
    noIpv6 boolean
    No IPv6 assignment
    staticIp PolicyHostTransportNodeProfileStandardHostSwitchIpv6AssignmentStaticIp
    IP assignment specification for Static IP List.
    staticIpMac PolicyHostTransportNodeProfileStandardHostSwitchIpv6AssignmentStaticIpMac
    IP assignment specification for Static MAC List.
    staticIpPool string
    IP assignment specification for Static IP Pool
    assigned_by_autoconf bool
    Enables autoconf assignment
    assigned_by_dhcpv6 bool
    Enables DHCPv6 assignment
    no_ipv6 bool
    No IPv6 assignment
    static_ip PolicyHostTransportNodeProfileStandardHostSwitchIpv6AssignmentStaticIp
    IP assignment specification for Static IP List.
    static_ip_mac PolicyHostTransportNodeProfileStandardHostSwitchIpv6AssignmentStaticIpMac
    IP assignment specification for Static MAC List.
    static_ip_pool str
    IP assignment specification for Static IP Pool
    assignedByAutoconf Boolean
    Enables autoconf assignment
    assignedByDhcpv6 Boolean
    Enables DHCPv6 assignment
    noIpv6 Boolean
    No IPv6 assignment
    staticIp Property Map
    IP assignment specification for Static IP List.
    staticIpMac Property Map
    IP assignment specification for Static MAC List.
    staticIpPool String
    IP assignment specification for Static IP Pool

    PolicyHostTransportNodeProfileStandardHostSwitchIpv6AssignmentStaticIp, PolicyHostTransportNodeProfileStandardHostSwitchIpv6AssignmentStaticIpArgs

    DefaultGateway string
    Gateway IP
    IpAddresses List<string>
    List of IPs for transport node host switch virtual tunnel endpoints
    PrefixLength string
    Prefix length
    DefaultGateway string
    Gateway IP
    IpAddresses []string
    List of IPs for transport node host switch virtual tunnel endpoints
    PrefixLength string
    Prefix length
    defaultGateway String
    Gateway IP
    ipAddresses List<String>
    List of IPs for transport node host switch virtual tunnel endpoints
    prefixLength String
    Prefix length
    defaultGateway string
    Gateway IP
    ipAddresses string[]
    List of IPs for transport node host switch virtual tunnel endpoints
    prefixLength string
    Prefix length
    default_gateway str
    Gateway IP
    ip_addresses Sequence[str]
    List of IPs for transport node host switch virtual tunnel endpoints
    prefix_length str
    Prefix length
    defaultGateway String
    Gateway IP
    ipAddresses List<String>
    List of IPs for transport node host switch virtual tunnel endpoints
    prefixLength String
    Prefix length

    PolicyHostTransportNodeProfileStandardHostSwitchIpv6AssignmentStaticIpMac, PolicyHostTransportNodeProfileStandardHostSwitchIpv6AssignmentStaticIpMacArgs

    defaultGateway String
    Gateway IP
    ipMacPairs List<Property Map>
    List of IP MAC pairs
    prefixLength String
    Prefix length

    PolicyHostTransportNodeProfileStandardHostSwitchIpv6AssignmentStaticIpMacIpMacPair, PolicyHostTransportNodeProfileStandardHostSwitchIpv6AssignmentStaticIpMacIpMacPairArgs

    IpAddress string
    A single IPv6 address
    MacAddress string
    A single MAC address
    IpAddress string
    A single IPv6 address
    MacAddress string
    A single MAC address
    ipAddress String
    A single IPv6 address
    macAddress String
    A single MAC address
    ipAddress string
    A single IPv6 address
    macAddress string
    A single MAC address
    ip_address str
    A single IPv6 address
    mac_address str
    A single MAC address
    ipAddress String
    A single IPv6 address
    macAddress String
    A single MAC address

    PolicyHostTransportNodeProfileStandardHostSwitchPnic, PolicyHostTransportNodeProfileStandardHostSwitchPnicArgs

    DeviceName string
    Device name or key.
    UplinkName string
    Uplink name for this Pnic.
    DeviceName string
    Device name or key.
    UplinkName string
    Uplink name for this Pnic.
    deviceName String
    Device name or key.
    uplinkName String
    Uplink name for this Pnic.
    deviceName string
    Device name or key.
    uplinkName string
    Uplink name for this Pnic.
    device_name str
    Device name or key.
    uplink_name str
    Uplink name for this Pnic.
    deviceName String
    Device name or key.
    uplinkName String
    Uplink name for this Pnic.

    PolicyHostTransportNodeProfileStandardHostSwitchTransportNodeProfileSubConfig, PolicyHostTransportNodeProfileStandardHostSwitchTransportNodeProfileSubConfigArgs

    HostSwitchConfigOption PolicyHostTransportNodeProfileStandardHostSwitchTransportNodeProfileSubConfigHostSwitchConfigOption
    Subset of the host switch configuration.
    Name string
    Name of the transport node profile config option.
    HostSwitchConfigOption PolicyHostTransportNodeProfileStandardHostSwitchTransportNodeProfileSubConfigHostSwitchConfigOption
    Subset of the host switch configuration.
    Name string
    Name of the transport node profile config option.
    hostSwitchConfigOption PolicyHostTransportNodeProfileStandardHostSwitchTransportNodeProfileSubConfigHostSwitchConfigOption
    Subset of the host switch configuration.
    name String
    Name of the transport node profile config option.
    hostSwitchConfigOption PolicyHostTransportNodeProfileStandardHostSwitchTransportNodeProfileSubConfigHostSwitchConfigOption
    Subset of the host switch configuration.
    name string
    Name of the transport node profile config option.
    host_switch_config_option PolicyHostTransportNodeProfileStandardHostSwitchTransportNodeProfileSubConfigHostSwitchConfigOption
    Subset of the host switch configuration.
    name str
    Name of the transport node profile config option.
    hostSwitchConfigOption Property Map
    Subset of the host switch configuration.
    name String
    Name of the transport node profile config option.

    PolicyHostTransportNodeProfileStandardHostSwitchTransportNodeProfileSubConfigHostSwitchConfigOption, PolicyHostTransportNodeProfileStandardHostSwitchTransportNodeProfileSubConfigHostSwitchConfigOptionArgs

    HostSwitchId string
    The host switch id. This ID will be used to reference a host switch.
    HostSwitchProfiles List<string>
    Policy paths of host switch profiles to be associated with this host switch. This attribute is deprecated, please use type-specific attribute instead (such as uplink_profile)

    Deprecated: Deprecated

    IpAssignment PolicyHostTransportNodeProfileStandardHostSwitchTransportNodeProfileSubConfigHostSwitchConfigOptionIpAssignment
    Specification for IPs to be used with host switch virtual tunnel endpoints. Should contain exatly one of the below:
    Ipv6Assignment PolicyHostTransportNodeProfileStandardHostSwitchTransportNodeProfileSubConfigHostSwitchConfigOptionIpv6Assignment
    Specification for IPv6 to be used with host switch virtual tunnel endpoints
    UplinkProfile string
    Uplink host switch profile path.
    Uplinks List<PolicyHostTransportNodeProfileStandardHostSwitchTransportNodeProfileSubConfigHostSwitchConfigOptionUplink>
    Uplink/LAG of VMware vSphere Distributed Switch connected to the HostSwitch.
    VtepHaProfile string
    VTEP high availablility host switch profile path. Only applicable with VDS switch.
    HostSwitchId string
    The host switch id. This ID will be used to reference a host switch.
    HostSwitchProfiles []string
    Policy paths of host switch profiles to be associated with this host switch. This attribute is deprecated, please use type-specific attribute instead (such as uplink_profile)

    Deprecated: Deprecated

    IpAssignment PolicyHostTransportNodeProfileStandardHostSwitchTransportNodeProfileSubConfigHostSwitchConfigOptionIpAssignment
    Specification for IPs to be used with host switch virtual tunnel endpoints. Should contain exatly one of the below:
    Ipv6Assignment PolicyHostTransportNodeProfileStandardHostSwitchTransportNodeProfileSubConfigHostSwitchConfigOptionIpv6Assignment
    Specification for IPv6 to be used with host switch virtual tunnel endpoints
    UplinkProfile string
    Uplink host switch profile path.
    Uplinks []PolicyHostTransportNodeProfileStandardHostSwitchTransportNodeProfileSubConfigHostSwitchConfigOptionUplink
    Uplink/LAG of VMware vSphere Distributed Switch connected to the HostSwitch.
    VtepHaProfile string
    VTEP high availablility host switch profile path. Only applicable with VDS switch.
    hostSwitchId String
    The host switch id. This ID will be used to reference a host switch.
    hostSwitchProfiles List<String>
    Policy paths of host switch profiles to be associated with this host switch. This attribute is deprecated, please use type-specific attribute instead (such as uplink_profile)

    Deprecated: Deprecated

    ipAssignment PolicyHostTransportNodeProfileStandardHostSwitchTransportNodeProfileSubConfigHostSwitchConfigOptionIpAssignment
    Specification for IPs to be used with host switch virtual tunnel endpoints. Should contain exatly one of the below:
    ipv6Assignment PolicyHostTransportNodeProfileStandardHostSwitchTransportNodeProfileSubConfigHostSwitchConfigOptionIpv6Assignment
    Specification for IPv6 to be used with host switch virtual tunnel endpoints
    uplinkProfile String
    Uplink host switch profile path.
    uplinks List<PolicyHostTransportNodeProfileStandardHostSwitchTransportNodeProfileSubConfigHostSwitchConfigOptionUplink>
    Uplink/LAG of VMware vSphere Distributed Switch connected to the HostSwitch.
    vtepHaProfile String
    VTEP high availablility host switch profile path. Only applicable with VDS switch.
    hostSwitchId string
    The host switch id. This ID will be used to reference a host switch.
    hostSwitchProfiles string[]
    Policy paths of host switch profiles to be associated with this host switch. This attribute is deprecated, please use type-specific attribute instead (such as uplink_profile)

    Deprecated: Deprecated

    ipAssignment PolicyHostTransportNodeProfileStandardHostSwitchTransportNodeProfileSubConfigHostSwitchConfigOptionIpAssignment
    Specification for IPs to be used with host switch virtual tunnel endpoints. Should contain exatly one of the below:
    ipv6Assignment PolicyHostTransportNodeProfileStandardHostSwitchTransportNodeProfileSubConfigHostSwitchConfigOptionIpv6Assignment
    Specification for IPv6 to be used with host switch virtual tunnel endpoints
    uplinkProfile string
    Uplink host switch profile path.
    uplinks PolicyHostTransportNodeProfileStandardHostSwitchTransportNodeProfileSubConfigHostSwitchConfigOptionUplink[]
    Uplink/LAG of VMware vSphere Distributed Switch connected to the HostSwitch.
    vtepHaProfile string
    VTEP high availablility host switch profile path. Only applicable with VDS switch.
    host_switch_id str
    The host switch id. This ID will be used to reference a host switch.
    host_switch_profiles Sequence[str]
    Policy paths of host switch profiles to be associated with this host switch. This attribute is deprecated, please use type-specific attribute instead (such as uplink_profile)

    Deprecated: Deprecated

    ip_assignment PolicyHostTransportNodeProfileStandardHostSwitchTransportNodeProfileSubConfigHostSwitchConfigOptionIpAssignment
    Specification for IPs to be used with host switch virtual tunnel endpoints. Should contain exatly one of the below:
    ipv6_assignment PolicyHostTransportNodeProfileStandardHostSwitchTransportNodeProfileSubConfigHostSwitchConfigOptionIpv6Assignment
    Specification for IPv6 to be used with host switch virtual tunnel endpoints
    uplink_profile str
    Uplink host switch profile path.
    uplinks Sequence[PolicyHostTransportNodeProfileStandardHostSwitchTransportNodeProfileSubConfigHostSwitchConfigOptionUplink]
    Uplink/LAG of VMware vSphere Distributed Switch connected to the HostSwitch.
    vtep_ha_profile str
    VTEP high availablility host switch profile path. Only applicable with VDS switch.
    hostSwitchId String
    The host switch id. This ID will be used to reference a host switch.
    hostSwitchProfiles List<String>
    Policy paths of host switch profiles to be associated with this host switch. This attribute is deprecated, please use type-specific attribute instead (such as uplink_profile)

    Deprecated: Deprecated

    ipAssignment Property Map
    Specification for IPs to be used with host switch virtual tunnel endpoints. Should contain exatly one of the below:
    ipv6Assignment Property Map
    Specification for IPv6 to be used with host switch virtual tunnel endpoints
    uplinkProfile String
    Uplink host switch profile path.
    uplinks List<Property Map>
    Uplink/LAG of VMware vSphere Distributed Switch connected to the HostSwitch.
    vtepHaProfile String
    VTEP high availablility host switch profile path. Only applicable with VDS switch.

    PolicyHostTransportNodeProfileStandardHostSwitchTransportNodeProfileSubConfigHostSwitchConfigOptionIpAssignment, PolicyHostTransportNodeProfileStandardHostSwitchTransportNodeProfileSubConfigHostSwitchConfigOptionIpAssignmentArgs

    AssignedByDhcp bool
    Enables DHCP assignment.
    NoIpv4 bool
    No IPv4 assignment
    StaticIp PolicyHostTransportNodeProfileStandardHostSwitchTransportNodeProfileSubConfigHostSwitchConfigOptionIpAssignmentStaticIp
    IP assignment specification for Static IP List.
    StaticIpMac PolicyHostTransportNodeProfileStandardHostSwitchTransportNodeProfileSubConfigHostSwitchConfigOptionIpAssignmentStaticIpMac
    IP assignment specification for Static MAC List.
    StaticIpPool string
    IP assignment specification for Static IP Pool.
    AssignedByDhcp bool
    Enables DHCP assignment.
    NoIpv4 bool
    No IPv4 assignment
    StaticIp PolicyHostTransportNodeProfileStandardHostSwitchTransportNodeProfileSubConfigHostSwitchConfigOptionIpAssignmentStaticIp
    IP assignment specification for Static IP List.
    StaticIpMac PolicyHostTransportNodeProfileStandardHostSwitchTransportNodeProfileSubConfigHostSwitchConfigOptionIpAssignmentStaticIpMac
    IP assignment specification for Static MAC List.
    StaticIpPool string
    IP assignment specification for Static IP Pool.
    assignedByDhcp Boolean
    Enables DHCP assignment.
    noIpv4 Boolean
    No IPv4 assignment
    staticIp PolicyHostTransportNodeProfileStandardHostSwitchTransportNodeProfileSubConfigHostSwitchConfigOptionIpAssignmentStaticIp
    IP assignment specification for Static IP List.
    staticIpMac PolicyHostTransportNodeProfileStandardHostSwitchTransportNodeProfileSubConfigHostSwitchConfigOptionIpAssignmentStaticIpMac
    IP assignment specification for Static MAC List.
    staticIpPool String
    IP assignment specification for Static IP Pool.
    assignedByDhcp boolean
    Enables DHCP assignment.
    noIpv4 boolean
    No IPv4 assignment
    staticIp PolicyHostTransportNodeProfileStandardHostSwitchTransportNodeProfileSubConfigHostSwitchConfigOptionIpAssignmentStaticIp
    IP assignment specification for Static IP List.
    staticIpMac PolicyHostTransportNodeProfileStandardHostSwitchTransportNodeProfileSubConfigHostSwitchConfigOptionIpAssignmentStaticIpMac
    IP assignment specification for Static MAC List.
    staticIpPool string
    IP assignment specification for Static IP Pool.
    assigned_by_dhcp bool
    Enables DHCP assignment.
    no_ipv4 bool
    No IPv4 assignment
    static_ip PolicyHostTransportNodeProfileStandardHostSwitchTransportNodeProfileSubConfigHostSwitchConfigOptionIpAssignmentStaticIp
    IP assignment specification for Static IP List.
    static_ip_mac PolicyHostTransportNodeProfileStandardHostSwitchTransportNodeProfileSubConfigHostSwitchConfigOptionIpAssignmentStaticIpMac
    IP assignment specification for Static MAC List.
    static_ip_pool str
    IP assignment specification for Static IP Pool.
    assignedByDhcp Boolean
    Enables DHCP assignment.
    noIpv4 Boolean
    No IPv4 assignment
    staticIp Property Map
    IP assignment specification for Static IP List.
    staticIpMac Property Map
    IP assignment specification for Static MAC List.
    staticIpPool String
    IP assignment specification for Static IP Pool.

    PolicyHostTransportNodeProfileStandardHostSwitchTransportNodeProfileSubConfigHostSwitchConfigOptionIpAssignmentStaticIp, PolicyHostTransportNodeProfileStandardHostSwitchTransportNodeProfileSubConfigHostSwitchConfigOptionIpAssignmentStaticIpArgs

    DefaultGateway string
    Gateway IP.
    IpAddresses List<string>
    List of IPs for transport node host switch virtual tunnel endpoints.
    SubnetMask string
    Subnet mask.
    DefaultGateway string
    Gateway IP.
    IpAddresses []string
    List of IPs for transport node host switch virtual tunnel endpoints.
    SubnetMask string
    Subnet mask.
    defaultGateway String
    Gateway IP.
    ipAddresses List<String>
    List of IPs for transport node host switch virtual tunnel endpoints.
    subnetMask String
    Subnet mask.
    defaultGateway string
    Gateway IP.
    ipAddresses string[]
    List of IPs for transport node host switch virtual tunnel endpoints.
    subnetMask string
    Subnet mask.
    default_gateway str
    Gateway IP.
    ip_addresses Sequence[str]
    List of IPs for transport node host switch virtual tunnel endpoints.
    subnet_mask str
    Subnet mask.
    defaultGateway String
    Gateway IP.
    ipAddresses List<String>
    List of IPs for transport node host switch virtual tunnel endpoints.
    subnetMask String
    Subnet mask.

    PolicyHostTransportNodeProfileStandardHostSwitchTransportNodeProfileSubConfigHostSwitchConfigOptionIpAssignmentStaticIpMac, PolicyHostTransportNodeProfileStandardHostSwitchTransportNodeProfileSubConfigHostSwitchConfigOptionIpAssignmentStaticIpMacArgs

    defaultGateway String
    Gateway IP
    ipMacPairs List<Property Map>
    List of IP MAC pairs
    subnetMask String
    Subnet mask

    PolicyHostTransportNodeProfileStandardHostSwitchTransportNodeProfileSubConfigHostSwitchConfigOptionIpAssignmentStaticIpMacIpMacPair, PolicyHostTransportNodeProfileStandardHostSwitchTransportNodeProfileSubConfigHostSwitchConfigOptionIpAssignmentStaticIpMacIpMacPairArgs

    IpAddress string
    A single IPv6 address
    MacAddress string
    A single MAC address
    IpAddress string
    A single IPv6 address
    MacAddress string
    A single MAC address
    ipAddress String
    A single IPv6 address
    macAddress String
    A single MAC address
    ipAddress string
    A single IPv6 address
    macAddress string
    A single MAC address
    ip_address str
    A single IPv6 address
    mac_address str
    A single MAC address
    ipAddress String
    A single IPv6 address
    macAddress String
    A single MAC address

    PolicyHostTransportNodeProfileStandardHostSwitchTransportNodeProfileSubConfigHostSwitchConfigOptionIpv6Assignment, PolicyHostTransportNodeProfileStandardHostSwitchTransportNodeProfileSubConfigHostSwitchConfigOptionIpv6AssignmentArgs

    AssignedByAutoconf bool
    Enables autoconf assignment
    AssignedByDhcpv6 bool
    Enables DHCPv6 assignment
    NoIpv6 bool
    No IPv6 assignment
    StaticIp PolicyHostTransportNodeProfileStandardHostSwitchTransportNodeProfileSubConfigHostSwitchConfigOptionIpv6AssignmentStaticIp
    IP assignment specification for Static IP List.
    StaticIpMac PolicyHostTransportNodeProfileStandardHostSwitchTransportNodeProfileSubConfigHostSwitchConfigOptionIpv6AssignmentStaticIpMac
    IP assignment specification for Static MAC List.
    StaticIpPool string
    IP assignment specification for Static IP Pool
    AssignedByAutoconf bool
    Enables autoconf assignment
    AssignedByDhcpv6 bool
    Enables DHCPv6 assignment
    NoIpv6 bool
    No IPv6 assignment
    StaticIp PolicyHostTransportNodeProfileStandardHostSwitchTransportNodeProfileSubConfigHostSwitchConfigOptionIpv6AssignmentStaticIp
    IP assignment specification for Static IP List.
    StaticIpMac PolicyHostTransportNodeProfileStandardHostSwitchTransportNodeProfileSubConfigHostSwitchConfigOptionIpv6AssignmentStaticIpMac
    IP assignment specification for Static MAC List.
    StaticIpPool string
    IP assignment specification for Static IP Pool
    assignedByAutoconf Boolean
    Enables autoconf assignment
    assignedByDhcpv6 Boolean
    Enables DHCPv6 assignment
    noIpv6 Boolean
    No IPv6 assignment
    staticIp PolicyHostTransportNodeProfileStandardHostSwitchTransportNodeProfileSubConfigHostSwitchConfigOptionIpv6AssignmentStaticIp
    IP assignment specification for Static IP List.
    staticIpMac PolicyHostTransportNodeProfileStandardHostSwitchTransportNodeProfileSubConfigHostSwitchConfigOptionIpv6AssignmentStaticIpMac
    IP assignment specification for Static MAC List.
    staticIpPool String
    IP assignment specification for Static IP Pool
    assignedByAutoconf boolean
    Enables autoconf assignment
    assignedByDhcpv6 boolean
    Enables DHCPv6 assignment
    noIpv6 boolean
    No IPv6 assignment
    staticIp PolicyHostTransportNodeProfileStandardHostSwitchTransportNodeProfileSubConfigHostSwitchConfigOptionIpv6AssignmentStaticIp
    IP assignment specification for Static IP List.
    staticIpMac PolicyHostTransportNodeProfileStandardHostSwitchTransportNodeProfileSubConfigHostSwitchConfigOptionIpv6AssignmentStaticIpMac
    IP assignment specification for Static MAC List.
    staticIpPool string
    IP assignment specification for Static IP Pool
    assigned_by_autoconf bool
    Enables autoconf assignment
    assigned_by_dhcpv6 bool
    Enables DHCPv6 assignment
    no_ipv6 bool
    No IPv6 assignment
    static_ip PolicyHostTransportNodeProfileStandardHostSwitchTransportNodeProfileSubConfigHostSwitchConfigOptionIpv6AssignmentStaticIp
    IP assignment specification for Static IP List.
    static_ip_mac PolicyHostTransportNodeProfileStandardHostSwitchTransportNodeProfileSubConfigHostSwitchConfigOptionIpv6AssignmentStaticIpMac
    IP assignment specification for Static MAC List.
    static_ip_pool str
    IP assignment specification for Static IP Pool
    assignedByAutoconf Boolean
    Enables autoconf assignment
    assignedByDhcpv6 Boolean
    Enables DHCPv6 assignment
    noIpv6 Boolean
    No IPv6 assignment
    staticIp Property Map
    IP assignment specification for Static IP List.
    staticIpMac Property Map
    IP assignment specification for Static MAC List.
    staticIpPool String
    IP assignment specification for Static IP Pool

    PolicyHostTransportNodeProfileStandardHostSwitchTransportNodeProfileSubConfigHostSwitchConfigOptionIpv6AssignmentStaticIp, PolicyHostTransportNodeProfileStandardHostSwitchTransportNodeProfileSubConfigHostSwitchConfigOptionIpv6AssignmentStaticIpArgs

    DefaultGateway string
    Gateway IP
    IpAddresses List<string>
    List of IPs for transport node host switch virtual tunnel endpoints
    PrefixLength string
    Prefix length
    DefaultGateway string
    Gateway IP
    IpAddresses []string
    List of IPs for transport node host switch virtual tunnel endpoints
    PrefixLength string
    Prefix length
    defaultGateway String
    Gateway IP
    ipAddresses List<String>
    List of IPs for transport node host switch virtual tunnel endpoints
    prefixLength String
    Prefix length
    defaultGateway string
    Gateway IP
    ipAddresses string[]
    List of IPs for transport node host switch virtual tunnel endpoints
    prefixLength string
    Prefix length
    default_gateway str
    Gateway IP
    ip_addresses Sequence[str]
    List of IPs for transport node host switch virtual tunnel endpoints
    prefix_length str
    Prefix length
    defaultGateway String
    Gateway IP
    ipAddresses List<String>
    List of IPs for transport node host switch virtual tunnel endpoints
    prefixLength String
    Prefix length

    PolicyHostTransportNodeProfileStandardHostSwitchTransportNodeProfileSubConfigHostSwitchConfigOptionIpv6AssignmentStaticIpMac, PolicyHostTransportNodeProfileStandardHostSwitchTransportNodeProfileSubConfigHostSwitchConfigOptionIpv6AssignmentStaticIpMacArgs

    defaultGateway String
    Gateway IP
    ipMacPairs List<Property Map>
    List of IP MAC pairs
    prefixLength String
    Prefix length

    PolicyHostTransportNodeProfileStandardHostSwitchTransportNodeProfileSubConfigHostSwitchConfigOptionIpv6AssignmentStaticIpMacIpMacPair, PolicyHostTransportNodeProfileStandardHostSwitchTransportNodeProfileSubConfigHostSwitchConfigOptionIpv6AssignmentStaticIpMacIpMacPairArgs

    IpAddress string
    A single IPv6 address
    MacAddress string
    A single MAC address
    IpAddress string
    A single IPv6 address
    MacAddress string
    A single MAC address
    ipAddress String
    A single IPv6 address
    macAddress String
    A single MAC address
    ipAddress string
    A single IPv6 address
    macAddress string
    A single MAC address
    ip_address str
    A single IPv6 address
    mac_address str
    A single MAC address
    ipAddress String
    A single IPv6 address
    macAddress String
    A single MAC address
    UplinkName string
    Uplink name from UplinkHostSwitch profile.
    VdsLagName string
    Link Aggregation Group (LAG) name of Virtual Distributed Switch.
    VdsUplinkName string
    Uplink name of VMware vSphere Distributed Switch (VDS).
    UplinkName string
    Uplink name from UplinkHostSwitch profile.
    VdsLagName string
    Link Aggregation Group (LAG) name of Virtual Distributed Switch.
    VdsUplinkName string
    Uplink name of VMware vSphere Distributed Switch (VDS).
    uplinkName String
    Uplink name from UplinkHostSwitch profile.
    vdsLagName String
    Link Aggregation Group (LAG) name of Virtual Distributed Switch.
    vdsUplinkName String
    Uplink name of VMware vSphere Distributed Switch (VDS).
    uplinkName string
    Uplink name from UplinkHostSwitch profile.
    vdsLagName string
    Link Aggregation Group (LAG) name of Virtual Distributed Switch.
    vdsUplinkName string
    Uplink name of VMware vSphere Distributed Switch (VDS).
    uplink_name str
    Uplink name from UplinkHostSwitch profile.
    vds_lag_name str
    Link Aggregation Group (LAG) name of Virtual Distributed Switch.
    vds_uplink_name str
    Uplink name of VMware vSphere Distributed Switch (VDS).
    uplinkName String
    Uplink name from UplinkHostSwitch profile.
    vdsLagName String
    Link Aggregation Group (LAG) name of Virtual Distributed Switch.
    vdsUplinkName String
    Uplink name of VMware vSphere Distributed Switch (VDS).

    PolicyHostTransportNodeProfileStandardHostSwitchTransportZoneEndpoint, PolicyHostTransportNodeProfileStandardHostSwitchTransportZoneEndpointArgs

    TransportZone string
    Policy path of the transport zone for this endpoint.
    TransportZoneProfiles List<string>
    Policy paths of the transport zone profiles associated with this transport zone endpoint on this transport node.
    TransportZone string
    Policy path of the transport zone for this endpoint.
    TransportZoneProfiles []string
    Policy paths of the transport zone profiles associated with this transport zone endpoint on this transport node.
    transportZone String
    Policy path of the transport zone for this endpoint.
    transportZoneProfiles List<String>
    Policy paths of the transport zone profiles associated with this transport zone endpoint on this transport node.
    transportZone string
    Policy path of the transport zone for this endpoint.
    transportZoneProfiles string[]
    Policy paths of the transport zone profiles associated with this transport zone endpoint on this transport node.
    transport_zone str
    Policy path of the transport zone for this endpoint.
    transport_zone_profiles Sequence[str]
    Policy paths of the transport zone profiles associated with this transport zone endpoint on this transport node.
    transportZone String
    Policy path of the transport zone for this endpoint.
    transportZoneProfiles List<String>
    Policy paths of the transport zone profiles associated with this transport zone endpoint on this transport node.
    UplinkName string
    Uplink name from UplinkHostSwitch profile.
    VdsLagName string
    Link Aggregation Group (LAG) name of Virtual Distributed Switch.
    VdsUplinkName string
    Uplink name of VMware vSphere Distributed Switch (VDS).
    UplinkName string
    Uplink name from UplinkHostSwitch profile.
    VdsLagName string
    Link Aggregation Group (LAG) name of Virtual Distributed Switch.
    VdsUplinkName string
    Uplink name of VMware vSphere Distributed Switch (VDS).
    uplinkName String
    Uplink name from UplinkHostSwitch profile.
    vdsLagName String
    Link Aggregation Group (LAG) name of Virtual Distributed Switch.
    vdsUplinkName String
    Uplink name of VMware vSphere Distributed Switch (VDS).
    uplinkName string
    Uplink name from UplinkHostSwitch profile.
    vdsLagName string
    Link Aggregation Group (LAG) name of Virtual Distributed Switch.
    vdsUplinkName string
    Uplink name of VMware vSphere Distributed Switch (VDS).
    uplink_name str
    Uplink name from UplinkHostSwitch profile.
    vds_lag_name str
    Link Aggregation Group (LAG) name of Virtual Distributed Switch.
    vds_uplink_name str
    Uplink name of VMware vSphere Distributed Switch (VDS).
    uplinkName String
    Uplink name from UplinkHostSwitch profile.
    vdsLagName String
    Link Aggregation Group (LAG) name of Virtual Distributed Switch.
    vdsUplinkName String
    Uplink name of VMware vSphere Distributed Switch (VDS).

    PolicyHostTransportNodeProfileStandardHostSwitchVmkInstallMigration, PolicyHostTransportNodeProfileStandardHostSwitchVmkInstallMigrationArgs

    DestinationNetwork string
    The network id to which the ESX vmk interface will be migrated.
    DeviceName string

    ESX vmk interface name.

    In addition to arguments listed above, the following attributes are exported:

    DestinationNetwork string
    The network id to which the ESX vmk interface will be migrated.
    DeviceName string

    ESX vmk interface name.

    In addition to arguments listed above, the following attributes are exported:

    destinationNetwork String
    The network id to which the ESX vmk interface will be migrated.
    deviceName String

    ESX vmk interface name.

    In addition to arguments listed above, the following attributes are exported:

    destinationNetwork string
    The network id to which the ESX vmk interface will be migrated.
    deviceName string

    ESX vmk interface name.

    In addition to arguments listed above, the following attributes are exported:

    destination_network str
    The network id to which the ESX vmk interface will be migrated.
    device_name str

    ESX vmk interface name.

    In addition to arguments listed above, the following attributes are exported:

    destinationNetwork String
    The network id to which the ESX vmk interface will be migrated.
    deviceName String

    ESX vmk interface name.

    In addition to arguments listed above, the following attributes are exported:

    PolicyHostTransportNodeProfileTag, PolicyHostTransportNodeProfileTagArgs

    Scope string
    Tag string
    A list of scope + tag pairs to associate with this resource.
    Scope string
    Tag string
    A list of scope + tag pairs to associate with this resource.
    scope String
    tag String
    A list of scope + tag pairs to associate with this resource.
    scope string
    tag string
    A list of scope + tag pairs to associate with this resource.
    scope str
    tag str
    A list of scope + tag pairs to associate with this resource.
    scope String
    tag String
    A list of scope + tag pairs to associate with this resource.

    Import

    ing

    An existing policy Host Transport Node profile can be [imported][docs-import] into this resource, via the following command:

    terraform import nsxt_policy_host_transport_node_profile.test POLICY_PATH
    

    The above command imports Policy Host Transport Node Profile named test with NSX policy path POLICY_PATH.

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    nsxt vmware/terraform-provider-nsxt
    License
    Notes
    This Pulumi package is based on the nsxt Terraform Provider.
    nsxt logo
    nsxt 3.8.1 published on Wednesday, Apr 30, 2025 by vmware