1. Packages
  2. Nsxt Provider
  3. API Docs
  4. PolicyHostTransportNodeProfile
nsxt 3.8.0 published on Monday, Apr 14, 2025 by vmware

nsxt.PolicyHostTransportNodeProfile

Explore with Pulumi AI

nsxt logo
nsxt 3.8.0 published on Monday, Apr 14, 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.

    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,
            }],
            hostSwitchProfiles: [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"],
            }],
            "host_switch_profiles": [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),
    						},
    					},
    					HostSwitchProfiles: pulumi.StringArray{
    						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,
                        },
                    },
                    HostSwitchProfiles = new[]
                    {
                        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())
                    .hostSwitchProfiles(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}
              hostSwitchProfiles:
                - ${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
            {
                IpAssignment = new Nsxt.Inputs.PolicyHostTransportNodeProfileStandardHostSwitchIpAssignmentArgs
                {
                    AssignedByDhcp = false,
                    StaticIp = new Nsxt.Inputs.PolicyHostTransportNodeProfileStandardHostSwitchIpAssignmentStaticIpArgs
                    {
                        DefaultGateway = "string",
                        IpAddresses = new[]
                        {
                            "string",
                        },
                        SubnetMask = "string",
                    },
                    StaticIpPool = "string",
                },
                CpuConfigs = new[]
                {
                    new Nsxt.Inputs.PolicyHostTransportNodeProfileStandardHostSwitchCpuConfigArgs
                    {
                        NumLcores = 0,
                        NumaNodeIndex = 0,
                    },
                },
                HostSwitchId = "string",
                HostSwitchMode = "string",
                HostSwitchName = "string",
                HostSwitchProfiles = new[]
                {
                    "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",
                            HostSwitchProfiles = new[]
                            {
                                "string",
                            },
                            IpAssignment = new Nsxt.Inputs.PolicyHostTransportNodeProfileStandardHostSwitchTransportNodeProfileSubConfigHostSwitchConfigOptionIpAssignmentArgs
                            {
                                AssignedByDhcp = false,
                                StaticIp = new Nsxt.Inputs.PolicyHostTransportNodeProfileStandardHostSwitchTransportNodeProfileSubConfigHostSwitchConfigOptionIpAssignmentStaticIpArgs
                                {
                                    DefaultGateway = "string",
                                    IpAddresses = new[]
                                    {
                                        "string",
                                    },
                                    SubnetMask = "string",
                                },
                                StaticIpPool = "string",
                            },
                            Uplinks = new[]
                            {
                                new Nsxt.Inputs.PolicyHostTransportNodeProfileStandardHostSwitchTransportNodeProfileSubConfigHostSwitchConfigOptionUplinkArgs
                                {
                                    UplinkName = "string",
                                    VdsLagName = "string",
                                    VdsUplinkName = "string",
                                },
                            },
                        },
                        Name = "string",
                    },
                },
                TransportZoneEndpoints = new[]
                {
                    new Nsxt.Inputs.PolicyHostTransportNodeProfileStandardHostSwitchTransportZoneEndpointArgs
                    {
                        TransportZone = "string",
                        TransportZoneProfiles = new[]
                        {
                            "string",
                        },
                    },
                },
                Uplinks = new[]
                {
                    new Nsxt.Inputs.PolicyHostTransportNodeProfileStandardHostSwitchUplinkArgs
                    {
                        UplinkName = "string",
                        VdsLagName = "string",
                        VdsUplinkName = "string",
                    },
                },
                VmkInstallMigrations = new[]
                {
                    new Nsxt.Inputs.PolicyHostTransportNodeProfileStandardHostSwitchVmkInstallMigrationArgs
                    {
                        DestinationNetwork = "string",
                        DeviceName = "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{
    			IpAssignment: &nsxt.PolicyHostTransportNodeProfileStandardHostSwitchIpAssignmentArgs{
    				AssignedByDhcp: pulumi.Bool(false),
    				StaticIp: &nsxt.PolicyHostTransportNodeProfileStandardHostSwitchIpAssignmentStaticIpArgs{
    					DefaultGateway: pulumi.String("string"),
    					IpAddresses: pulumi.StringArray{
    						pulumi.String("string"),
    					},
    					SubnetMask: pulumi.String("string"),
    				},
    				StaticIpPool: pulumi.String("string"),
    			},
    			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"),
    			HostSwitchProfiles: pulumi.StringArray{
    				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"),
    						HostSwitchProfiles: pulumi.StringArray{
    							pulumi.String("string"),
    						},
    						IpAssignment: &nsxt.PolicyHostTransportNodeProfileStandardHostSwitchTransportNodeProfileSubConfigHostSwitchConfigOptionIpAssignmentArgs{
    							AssignedByDhcp: pulumi.Bool(false),
    							StaticIp: &nsxt.PolicyHostTransportNodeProfileStandardHostSwitchTransportNodeProfileSubConfigHostSwitchConfigOptionIpAssignmentStaticIpArgs{
    								DefaultGateway: pulumi.String("string"),
    								IpAddresses: pulumi.StringArray{
    									pulumi.String("string"),
    								},
    								SubnetMask: pulumi.String("string"),
    							},
    							StaticIpPool: pulumi.String("string"),
    						},
    						Uplinks: nsxt.PolicyHostTransportNodeProfileStandardHostSwitchTransportNodeProfileSubConfigHostSwitchConfigOptionUplinkArray{
    							&nsxt.PolicyHostTransportNodeProfileStandardHostSwitchTransportNodeProfileSubConfigHostSwitchConfigOptionUplinkArgs{
    								UplinkName:    pulumi.String("string"),
    								VdsLagName:    pulumi.String("string"),
    								VdsUplinkName: pulumi.String("string"),
    							},
    						},
    					},
    					Name: pulumi.String("string"),
    				},
    			},
    			TransportZoneEndpoints: nsxt.PolicyHostTransportNodeProfileStandardHostSwitchTransportZoneEndpointArray{
    				&nsxt.PolicyHostTransportNodeProfileStandardHostSwitchTransportZoneEndpointArgs{
    					TransportZone: pulumi.String("string"),
    					TransportZoneProfiles: pulumi.StringArray{
    						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"),
    				},
    			},
    		},
    	},
    	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()
            .ipAssignment(PolicyHostTransportNodeProfileStandardHostSwitchIpAssignmentArgs.builder()
                .assignedByDhcp(false)
                .staticIp(PolicyHostTransportNodeProfileStandardHostSwitchIpAssignmentStaticIpArgs.builder()
                    .defaultGateway("string")
                    .ipAddresses("string")
                    .subnetMask("string")
                    .build())
                .staticIpPool("string")
                .build())
            .cpuConfigs(PolicyHostTransportNodeProfileStandardHostSwitchCpuConfigArgs.builder()
                .numLcores(0)
                .numaNodeIndex(0)
                .build())
            .hostSwitchId("string")
            .hostSwitchMode("string")
            .hostSwitchName("string")
            .hostSwitchProfiles("string")
            .isMigratePnics(false)
            .pnics(PolicyHostTransportNodeProfileStandardHostSwitchPnicArgs.builder()
                .deviceName("string")
                .uplinkName("string")
                .build())
            .transportNodeProfileSubConfigs(PolicyHostTransportNodeProfileStandardHostSwitchTransportNodeProfileSubConfigArgs.builder()
                .hostSwitchConfigOption(PolicyHostTransportNodeProfileStandardHostSwitchTransportNodeProfileSubConfigHostSwitchConfigOptionArgs.builder()
                    .hostSwitchId("string")
                    .hostSwitchProfiles("string")
                    .ipAssignment(PolicyHostTransportNodeProfileStandardHostSwitchTransportNodeProfileSubConfigHostSwitchConfigOptionIpAssignmentArgs.builder()
                        .assignedByDhcp(false)
                        .staticIp(PolicyHostTransportNodeProfileStandardHostSwitchTransportNodeProfileSubConfigHostSwitchConfigOptionIpAssignmentStaticIpArgs.builder()
                            .defaultGateway("string")
                            .ipAddresses("string")
                            .subnetMask("string")
                            .build())
                        .staticIpPool("string")
                        .build())
                    .uplinks(PolicyHostTransportNodeProfileStandardHostSwitchTransportNodeProfileSubConfigHostSwitchConfigOptionUplinkArgs.builder()
                        .uplinkName("string")
                        .vdsLagName("string")
                        .vdsUplinkName("string")
                        .build())
                    .build())
                .name("string")
                .build())
            .transportZoneEndpoints(PolicyHostTransportNodeProfileStandardHostSwitchTransportZoneEndpointArgs.builder()
                .transportZone("string")
                .transportZoneProfiles("string")
                .build())
            .uplinks(PolicyHostTransportNodeProfileStandardHostSwitchUplinkArgs.builder()
                .uplinkName("string")
                .vdsLagName("string")
                .vdsUplinkName("string")
                .build())
            .vmkInstallMigrations(PolicyHostTransportNodeProfileStandardHostSwitchVmkInstallMigrationArgs.builder()
                .destinationNetwork("string")
                .deviceName("string")
                .build())
            .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=[{
            "ip_assignment": {
                "assigned_by_dhcp": False,
                "static_ip": {
                    "default_gateway": "string",
                    "ip_addresses": ["string"],
                    "subnet_mask": "string",
                },
                "static_ip_pool": "string",
            },
            "cpu_configs": [{
                "num_lcores": 0,
                "numa_node_index": 0,
            }],
            "host_switch_id": "string",
            "host_switch_mode": "string",
            "host_switch_name": "string",
            "host_switch_profiles": ["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",
                    "host_switch_profiles": ["string"],
                    "ip_assignment": {
                        "assigned_by_dhcp": False,
                        "static_ip": {
                            "default_gateway": "string",
                            "ip_addresses": ["string"],
                            "subnet_mask": "string",
                        },
                        "static_ip_pool": "string",
                    },
                    "uplinks": [{
                        "uplink_name": "string",
                        "vds_lag_name": "string",
                        "vds_uplink_name": "string",
                    }],
                },
                "name": "string",
            }],
            "transport_zone_endpoints": [{
                "transport_zone": "string",
                "transport_zone_profiles": ["string"],
            }],
            "uplinks": [{
                "uplink_name": "string",
                "vds_lag_name": "string",
                "vds_uplink_name": "string",
            }],
            "vmk_install_migrations": [{
                "destination_network": "string",
                "device_name": "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: [{
            ipAssignment: {
                assignedByDhcp: false,
                staticIp: {
                    defaultGateway: "string",
                    ipAddresses: ["string"],
                    subnetMask: "string",
                },
                staticIpPool: "string",
            },
            cpuConfigs: [{
                numLcores: 0,
                numaNodeIndex: 0,
            }],
            hostSwitchId: "string",
            hostSwitchMode: "string",
            hostSwitchName: "string",
            hostSwitchProfiles: ["string"],
            isMigratePnics: false,
            pnics: [{
                deviceName: "string",
                uplinkName: "string",
            }],
            transportNodeProfileSubConfigs: [{
                hostSwitchConfigOption: {
                    hostSwitchId: "string",
                    hostSwitchProfiles: ["string"],
                    ipAssignment: {
                        assignedByDhcp: false,
                        staticIp: {
                            defaultGateway: "string",
                            ipAddresses: ["string"],
                            subnetMask: "string",
                        },
                        staticIpPool: "string",
                    },
                    uplinks: [{
                        uplinkName: "string",
                        vdsLagName: "string",
                        vdsUplinkName: "string",
                    }],
                },
                name: "string",
            }],
            transportZoneEndpoints: [{
                transportZone: "string",
                transportZoneProfiles: ["string"],
            }],
            uplinks: [{
                uplinkName: "string",
                vdsLagName: "string",
                vdsUplinkName: "string",
            }],
            vmkInstallMigrations: [{
                destinationNetwork: "string",
                deviceName: "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
              hostSwitchProfiles:
                - string
              ipAssignment:
                assignedByDhcp: false
                staticIp:
                    defaultGateway: string
                    ipAddresses:
                        - string
                    subnetMask: string
                staticIpPool: string
              isMigratePnics: false
              pnics:
                - deviceName: string
                  uplinkName: string
              transportNodeProfileSubConfigs:
                - hostSwitchConfigOption:
                    hostSwitchId: string
                    hostSwitchProfiles:
                        - string
                    ipAssignment:
                        assignedByDhcp: false
                        staticIp:
                            defaultGateway: string
                            ipAddresses:
                                - string
                            subnetMask: string
                        staticIpPool: string
                    uplinks:
                        - uplinkName: string
                          vdsLagName: string
                          vdsUplinkName: string
                  name: string
              transportZoneEndpoints:
                - transportZone: string
                  transportZoneProfiles:
                    - string
              uplinks:
                - uplinkName: string
                  vdsLagName: string
                  vdsUplinkName: string
              vmkInstallMigrations:
                - destinationNetwork: string
                  deviceName: 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

    IpAssignment PolicyHostTransportNodeProfileStandardHostSwitchIpAssignment
    Specification for IPs to be used with host switch virtual tunnel endpoints. Should contain exactly one of the below:
    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.
    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
    Uplinks List<PolicyHostTransportNodeProfileStandardHostSwitchUplink>
    Uplink/LAG of VMware vSphere Distributed Switch connected to the HostSwitch.
    VmkInstallMigrations List<PolicyHostTransportNodeProfileStandardHostSwitchVmkInstallMigration>
    The vmknic and logical switch mappings.
    IpAssignment PolicyHostTransportNodeProfileStandardHostSwitchIpAssignment
    Specification for IPs to be used with host switch virtual tunnel endpoints. Should contain exactly one of the below:
    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.
    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
    Uplinks []PolicyHostTransportNodeProfileStandardHostSwitchUplink
    Uplink/LAG of VMware vSphere Distributed Switch connected to the HostSwitch.
    VmkInstallMigrations []PolicyHostTransportNodeProfileStandardHostSwitchVmkInstallMigration
    The vmknic and logical switch mappings.
    ipAssignment PolicyHostTransportNodeProfileStandardHostSwitchIpAssignment
    Specification for IPs to be used with host switch virtual tunnel endpoints. Should contain exactly one of the below:
    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.
    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
    uplinks List<PolicyHostTransportNodeProfileStandardHostSwitchUplink>
    Uplink/LAG of VMware vSphere Distributed Switch connected to the HostSwitch.
    vmkInstallMigrations List<PolicyHostTransportNodeProfileStandardHostSwitchVmkInstallMigration>
    The vmknic and logical switch mappings.
    ipAssignment PolicyHostTransportNodeProfileStandardHostSwitchIpAssignment
    Specification for IPs to be used with host switch virtual tunnel endpoints. Should contain exactly one of the below:
    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.
    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
    uplinks PolicyHostTransportNodeProfileStandardHostSwitchUplink[]
    Uplink/LAG of VMware vSphere Distributed Switch connected to the HostSwitch.
    vmkInstallMigrations PolicyHostTransportNodeProfileStandardHostSwitchVmkInstallMigration[]
    The vmknic and logical switch mappings.
    ip_assignment PolicyHostTransportNodeProfileStandardHostSwitchIpAssignment
    Specification for IPs to be used with host switch virtual tunnel endpoints. Should contain exactly one of the below:
    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.
    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
    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.
    ipAssignment Property Map
    Specification for IPs to be used with host switch virtual tunnel endpoints. Should contain exactly one of the below:
    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.
    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
    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.

    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.
    StaticIp PolicyHostTransportNodeProfileStandardHostSwitchIpAssignmentStaticIp
    IP assignment specification for Static IP List.
    StaticIpPool string
    IP assignment specification for Static IP Pool.
    AssignedByDhcp bool
    Enables DHCP assignment.
    StaticIp PolicyHostTransportNodeProfileStandardHostSwitchIpAssignmentStaticIp
    IP assignment specification for Static IP List.
    StaticIpPool string
    IP assignment specification for Static IP Pool.
    assignedByDhcp Boolean
    Enables DHCP assignment.
    staticIp PolicyHostTransportNodeProfileStandardHostSwitchIpAssignmentStaticIp
    IP assignment specification for Static IP List.
    staticIpPool String
    IP assignment specification for Static IP Pool.
    assignedByDhcp boolean
    Enables DHCP assignment.
    staticIp PolicyHostTransportNodeProfileStandardHostSwitchIpAssignmentStaticIp
    IP assignment specification for Static IP List.
    staticIpPool string
    IP assignment specification for Static IP Pool.
    assigned_by_dhcp bool
    Enables DHCP assignment.
    static_ip PolicyHostTransportNodeProfileStandardHostSwitchIpAssignmentStaticIp
    IP assignment specification for Static IP List.
    static_ip_pool str
    IP assignment specification for Static IP Pool.
    assignedByDhcp Boolean
    Enables DHCP assignment.
    staticIp Property Map
    IP assignment specification for Static IP 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.

    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.
    IpAssignment PolicyHostTransportNodeProfileStandardHostSwitchTransportNodeProfileSubConfigHostSwitchConfigOptionIpAssignment
    Specification for IPs to be used with host switch virtual tunnel endpoints. Should contain exatly one of the below:
    Uplinks List<PolicyHostTransportNodeProfileStandardHostSwitchTransportNodeProfileSubConfigHostSwitchConfigOptionUplink>
    Uplink/LAG of VMware vSphere Distributed Switch connected to the HostSwitch.
    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.
    IpAssignment PolicyHostTransportNodeProfileStandardHostSwitchTransportNodeProfileSubConfigHostSwitchConfigOptionIpAssignment
    Specification for IPs to be used with host switch virtual tunnel endpoints. Should contain exatly one of the below:
    Uplinks []PolicyHostTransportNodeProfileStandardHostSwitchTransportNodeProfileSubConfigHostSwitchConfigOptionUplink
    Uplink/LAG of VMware vSphere Distributed Switch connected to the HostSwitch.
    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.
    ipAssignment PolicyHostTransportNodeProfileStandardHostSwitchTransportNodeProfileSubConfigHostSwitchConfigOptionIpAssignment
    Specification for IPs to be used with host switch virtual tunnel endpoints. Should contain exatly one of the below:
    uplinks List<PolicyHostTransportNodeProfileStandardHostSwitchTransportNodeProfileSubConfigHostSwitchConfigOptionUplink>
    Uplink/LAG of VMware vSphere Distributed Switch connected to the HostSwitch.
    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.
    ipAssignment PolicyHostTransportNodeProfileStandardHostSwitchTransportNodeProfileSubConfigHostSwitchConfigOptionIpAssignment
    Specification for IPs to be used with host switch virtual tunnel endpoints. Should contain exatly one of the below:
    uplinks PolicyHostTransportNodeProfileStandardHostSwitchTransportNodeProfileSubConfigHostSwitchConfigOptionUplink[]
    Uplink/LAG of VMware vSphere Distributed Switch connected to the HostSwitch.
    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.
    ip_assignment PolicyHostTransportNodeProfileStandardHostSwitchTransportNodeProfileSubConfigHostSwitchConfigOptionIpAssignment
    Specification for IPs to be used with host switch virtual tunnel endpoints. Should contain exatly one of the below:
    uplinks Sequence[PolicyHostTransportNodeProfileStandardHostSwitchTransportNodeProfileSubConfigHostSwitchConfigOptionUplink]
    Uplink/LAG of VMware vSphere Distributed Switch connected to the HostSwitch.
    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.
    ipAssignment Property Map
    Specification for IPs to be used with host switch virtual tunnel endpoints. Should contain exatly one of the below:
    uplinks List<Property Map>
    Uplink/LAG of VMware vSphere Distributed Switch connected to the HostSwitch.

    PolicyHostTransportNodeProfileStandardHostSwitchTransportNodeProfileSubConfigHostSwitchConfigOptionIpAssignment, PolicyHostTransportNodeProfileStandardHostSwitchTransportNodeProfileSubConfigHostSwitchConfigOptionIpAssignmentArgs

    AssignedByDhcp bool
    Enables DHCP assignment.
    StaticIp PolicyHostTransportNodeProfileStandardHostSwitchTransportNodeProfileSubConfigHostSwitchConfigOptionIpAssignmentStaticIp
    IP assignment specification for Static IP List.
    StaticIpPool string
    IP assignment specification for Static IP Pool.
    AssignedByDhcp bool
    Enables DHCP assignment.
    StaticIp PolicyHostTransportNodeProfileStandardHostSwitchTransportNodeProfileSubConfigHostSwitchConfigOptionIpAssignmentStaticIp
    IP assignment specification for Static IP List.
    StaticIpPool string
    IP assignment specification for Static IP Pool.
    assignedByDhcp Boolean
    Enables DHCP assignment.
    staticIp PolicyHostTransportNodeProfileStandardHostSwitchTransportNodeProfileSubConfigHostSwitchConfigOptionIpAssignmentStaticIp
    IP assignment specification for Static IP List.
    staticIpPool String
    IP assignment specification for Static IP Pool.
    assignedByDhcp boolean
    Enables DHCP assignment.
    staticIp PolicyHostTransportNodeProfileStandardHostSwitchTransportNodeProfileSubConfigHostSwitchConfigOptionIpAssignmentStaticIp
    IP assignment specification for Static IP List.
    staticIpPool string
    IP assignment specification for Static IP Pool.
    assigned_by_dhcp bool
    Enables DHCP assignment.
    static_ip PolicyHostTransportNodeProfileStandardHostSwitchTransportNodeProfileSubConfigHostSwitchConfigOptionIpAssignmentStaticIp
    IP assignment specification for Static IP List.
    static_ip_pool str
    IP assignment specification for Static IP Pool.
    assignedByDhcp Boolean
    Enables DHCP assignment.
    staticIp Property Map
    IP assignment specification for Static IP 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.
    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.0 published on Monday, Apr 14, 2025 by vmware