1. Packages
  2. Packages
  3. Nutanix
  4. API Docs
  5. VmNetworkDeviceMigrateV2
Viewing docs for Nutanix v0.13.0
published on Tuesday, Apr 28, 2026 by Piers Karsenbarg
nutanix logo
Viewing docs for Nutanix v0.13.0
published on Tuesday, Apr 28, 2026 by Piers Karsenbarg

    Provides a Nutanix Virtual Machine resource to Migrate a nic.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as nutanix from "@pierskarsenbarg/nutanix";
    
    const migrate = new nutanix.VmNetworkDeviceMigrateV2("migrate", {
        vmExtId: "246f6e8a-ff05-4057-af6b-b1fd23a46d7d",
        extId: "eb0157e7-4a87-4ba6-ac8f-62cfe6251b8b",
        subnets: [{
            extId: "6085d3ba-99ce-41fa-9866-e5d5babb62c7",
        }],
        migrateType: "ASSIGN_IP",
        ipAddresses: [{
            value: "10.10.10.11",
            prefixLength: 32,
        }],
    });
    
    import pulumi
    import pulumi_nutanix as nutanix
    
    migrate = nutanix.VmNetworkDeviceMigrateV2("migrate",
        vm_ext_id="246f6e8a-ff05-4057-af6b-b1fd23a46d7d",
        ext_id="eb0157e7-4a87-4ba6-ac8f-62cfe6251b8b",
        subnets=[{
            "ext_id": "6085d3ba-99ce-41fa-9866-e5d5babb62c7",
        }],
        migrate_type="ASSIGN_IP",
        ip_addresses=[{
            "value": "10.10.10.11",
            "prefix_length": 32,
        }])
    
    package main
    
    import (
    	"github.com/pierskarsenbarg/pulumi-nutanix/sdk/go/nutanix"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := nutanix.NewVmNetworkDeviceMigrateV2(ctx, "migrate", &nutanix.VmNetworkDeviceMigrateV2Args{
    			VmExtId: pulumi.String("246f6e8a-ff05-4057-af6b-b1fd23a46d7d"),
    			ExtId:   pulumi.String("eb0157e7-4a87-4ba6-ac8f-62cfe6251b8b"),
    			Subnets: nutanix.VmNetworkDeviceMigrateV2SubnetArray{
    				&nutanix.VmNetworkDeviceMigrateV2SubnetArgs{
    					ExtId: pulumi.String("6085d3ba-99ce-41fa-9866-e5d5babb62c7"),
    				},
    			},
    			MigrateType: pulumi.String("ASSIGN_IP"),
    			IpAddresses: nutanix.VmNetworkDeviceMigrateV2IpAddressArray{
    				&nutanix.VmNetworkDeviceMigrateV2IpAddressArgs{
    					Value:        pulumi.String("10.10.10.11"),
    					PrefixLength: pulumi.Int(32),
    				},
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Nutanix = PiersKarsenbarg.Nutanix;
    
    return await Deployment.RunAsync(() => 
    {
        var migrate = new Nutanix.Index.VmNetworkDeviceMigrateV2("migrate", new()
        {
            VmExtId = "246f6e8a-ff05-4057-af6b-b1fd23a46d7d",
            ExtId = "eb0157e7-4a87-4ba6-ac8f-62cfe6251b8b",
            Subnets = new[]
            {
                new Nutanix.Inputs.VmNetworkDeviceMigrateV2SubnetArgs
                {
                    ExtId = "6085d3ba-99ce-41fa-9866-e5d5babb62c7",
                },
            },
            MigrateType = "ASSIGN_IP",
            IpAddresses = new[]
            {
                new Nutanix.Inputs.VmNetworkDeviceMigrateV2IpAddressArgs
                {
                    Value = "10.10.10.11",
                    PrefixLength = 32,
                },
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.nutanix.VmNetworkDeviceMigrateV2;
    import com.pulumi.nutanix.VmNetworkDeviceMigrateV2Args;
    import com.pulumi.nutanix.inputs.VmNetworkDeviceMigrateV2SubnetArgs;
    import com.pulumi.nutanix.inputs.VmNetworkDeviceMigrateV2IpAddressArgs;
    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 migrate = new VmNetworkDeviceMigrateV2("migrate", VmNetworkDeviceMigrateV2Args.builder()
                .vmExtId("246f6e8a-ff05-4057-af6b-b1fd23a46d7d")
                .extId("eb0157e7-4a87-4ba6-ac8f-62cfe6251b8b")
                .subnets(VmNetworkDeviceMigrateV2SubnetArgs.builder()
                    .extId("6085d3ba-99ce-41fa-9866-e5d5babb62c7")
                    .build())
                .migrateType("ASSIGN_IP")
                .ipAddresses(VmNetworkDeviceMigrateV2IpAddressArgs.builder()
                    .value("10.10.10.11")
                    .prefixLength(32)
                    .build())
                .build());
    
        }
    }
    
    resources:
      migrate:
        type: nutanix:VmNetworkDeviceMigrateV2
        properties:
          vmExtId: 246f6e8a-ff05-4057-af6b-b1fd23a46d7d
          extId: eb0157e7-4a87-4ba6-ac8f-62cfe6251b8b
          subnets:
            - extId: 6085d3ba-99ce-41fa-9866-e5d5babb62c7
          migrateType: ASSIGN_IP
          ipAddresses:
            - value: 10.10.10.11
              prefixLength: 32
    
    Example coming soon!
    

    Create VmNetworkDeviceMigrateV2 Resource

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

    Constructor syntax

    new VmNetworkDeviceMigrateV2(name: string, args: VmNetworkDeviceMigrateV2Args, opts?: CustomResourceOptions);
    @overload
    def VmNetworkDeviceMigrateV2(resource_name: str,
                                 args: VmNetworkDeviceMigrateV2Args,
                                 opts: Optional[ResourceOptions] = None)
    
    @overload
    def VmNetworkDeviceMigrateV2(resource_name: str,
                                 opts: Optional[ResourceOptions] = None,
                                 ext_id: Optional[str] = None,
                                 migrate_type: Optional[str] = None,
                                 subnets: Optional[Sequence[VmNetworkDeviceMigrateV2SubnetArgs]] = None,
                                 vm_ext_id: Optional[str] = None,
                                 ip_addresses: Optional[Sequence[VmNetworkDeviceMigrateV2IpAddressArgs]] = None)
    func NewVmNetworkDeviceMigrateV2(ctx *Context, name string, args VmNetworkDeviceMigrateV2Args, opts ...ResourceOption) (*VmNetworkDeviceMigrateV2, error)
    public VmNetworkDeviceMigrateV2(string name, VmNetworkDeviceMigrateV2Args args, CustomResourceOptions? opts = null)
    public VmNetworkDeviceMigrateV2(String name, VmNetworkDeviceMigrateV2Args args)
    public VmNetworkDeviceMigrateV2(String name, VmNetworkDeviceMigrateV2Args args, CustomResourceOptions options)
    
    type: nutanix:VmNetworkDeviceMigrateV2
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    resource "nutanix_vmnetworkdevicemigratev2" "name" {
        # resource properties
    }

    Parameters

    name string
    The unique name of the resource.
    args VmNetworkDeviceMigrateV2Args
    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 VmNetworkDeviceMigrateV2Args
    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 VmNetworkDeviceMigrateV2Args
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args VmNetworkDeviceMigrateV2Args
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args VmNetworkDeviceMigrateV2Args
    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 vmNetworkDeviceMigrateV2Resource = new Nutanix.VmNetworkDeviceMigrateV2("vmNetworkDeviceMigrateV2Resource", new()
    {
        ExtId = "string",
        MigrateType = "string",
        Subnets = new[]
        {
            new Nutanix.Inputs.VmNetworkDeviceMigrateV2SubnetArgs
            {
                ExtId = "string",
            },
        },
        VmExtId = "string",
        IpAddresses = new[]
        {
            new Nutanix.Inputs.VmNetworkDeviceMigrateV2IpAddressArgs
            {
                Value = "string",
                PrefixLength = 0,
            },
        },
    });
    
    example, err := nutanix.NewVmNetworkDeviceMigrateV2(ctx, "vmNetworkDeviceMigrateV2Resource", &nutanix.VmNetworkDeviceMigrateV2Args{
    	ExtId:       pulumi.String("string"),
    	MigrateType: pulumi.String("string"),
    	Subnets: nutanix.VmNetworkDeviceMigrateV2SubnetArray{
    		&nutanix.VmNetworkDeviceMigrateV2SubnetArgs{
    			ExtId: pulumi.String("string"),
    		},
    	},
    	VmExtId: pulumi.String("string"),
    	IpAddresses: nutanix.VmNetworkDeviceMigrateV2IpAddressArray{
    		&nutanix.VmNetworkDeviceMigrateV2IpAddressArgs{
    			Value:        pulumi.String("string"),
    			PrefixLength: pulumi.Int(0),
    		},
    	},
    })
    
    resource "nutanix_vmnetworkdevicemigratev2" "vmNetworkDeviceMigrateV2Resource" {
      ext_id       = "string"
      migrate_type = "string"
      subnets {
        ext_id = "string"
      }
      vm_ext_id = "string"
      ip_addresses {
        value         = "string"
        prefix_length = 0
      }
    }
    
    var vmNetworkDeviceMigrateV2Resource = new VmNetworkDeviceMigrateV2("vmNetworkDeviceMigrateV2Resource", VmNetworkDeviceMigrateV2Args.builder()
        .extId("string")
        .migrateType("string")
        .subnets(VmNetworkDeviceMigrateV2SubnetArgs.builder()
            .extId("string")
            .build())
        .vmExtId("string")
        .ipAddresses(VmNetworkDeviceMigrateV2IpAddressArgs.builder()
            .value("string")
            .prefixLength(0)
            .build())
        .build());
    
    vm_network_device_migrate_v2_resource = nutanix.VmNetworkDeviceMigrateV2("vmNetworkDeviceMigrateV2Resource",
        ext_id="string",
        migrate_type="string",
        subnets=[{
            "ext_id": "string",
        }],
        vm_ext_id="string",
        ip_addresses=[{
            "value": "string",
            "prefix_length": 0,
        }])
    
    const vmNetworkDeviceMigrateV2Resource = new nutanix.VmNetworkDeviceMigrateV2("vmNetworkDeviceMigrateV2Resource", {
        extId: "string",
        migrateType: "string",
        subnets: [{
            extId: "string",
        }],
        vmExtId: "string",
        ipAddresses: [{
            value: "string",
            prefixLength: 0,
        }],
    });
    
    type: nutanix:VmNetworkDeviceMigrateV2
    properties:
        extId: string
        ipAddresses:
            - prefixLength: 0
              value: string
        migrateType: string
        subnets:
            - extId: string
        vmExtId: string
    

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

    ExtId string
    • (Required) The globally unique identifier of a Nic. It should be of type UUID.
    MigrateType string
    • (Required) The type of IP address management for NIC migration. Valid values are:
    • ASSIGN_IP The type of NIC is Span-Destination.
    • RELEASE_IP The type of NIC is Normal.
    Subnets List<PiersKarsenbarg.Nutanix.Inputs.VmNetworkDeviceMigrateV2Subnet>
    • (Required) Network identifier for this adapter. Only valid if nicType is NORMAL_NIC or DIRECT_NIC.
    VmExtId string
    • (Required) The globally unique identifier of a VM. It should be of type UUID.
    IpAddresses List<PiersKarsenbarg.Nutanix.Inputs.VmNetworkDeviceMigrateV2IpAddress>
    • (Optional) Ip config settings.
    ExtId string
    • (Required) The globally unique identifier of a Nic. It should be of type UUID.
    MigrateType string
    • (Required) The type of IP address management for NIC migration. Valid values are:
    • ASSIGN_IP The type of NIC is Span-Destination.
    • RELEASE_IP The type of NIC is Normal.
    Subnets []VmNetworkDeviceMigrateV2SubnetArgs
    • (Required) Network identifier for this adapter. Only valid if nicType is NORMAL_NIC or DIRECT_NIC.
    VmExtId string
    • (Required) The globally unique identifier of a VM. It should be of type UUID.
    IpAddresses []VmNetworkDeviceMigrateV2IpAddressArgs
    • (Optional) Ip config settings.
    ext_id string
    • (Required) The globally unique identifier of a Nic. It should be of type UUID.
    migrate_type string
    • (Required) The type of IP address management for NIC migration. Valid values are:
    • ASSIGN_IP The type of NIC is Span-Destination.
    • RELEASE_IP The type of NIC is Normal.
    subnets list(object)
    • (Required) Network identifier for this adapter. Only valid if nicType is NORMAL_NIC or DIRECT_NIC.
    vm_ext_id string
    • (Required) The globally unique identifier of a VM. It should be of type UUID.
    ip_addresses list(object)
    • (Optional) Ip config settings.
    extId String
    • (Required) The globally unique identifier of a Nic. It should be of type UUID.
    migrateType String
    • (Required) The type of IP address management for NIC migration. Valid values are:
    • ASSIGN_IP The type of NIC is Span-Destination.
    • RELEASE_IP The type of NIC is Normal.
    subnets List<VmNetworkDeviceMigrateV2Subnet>
    • (Required) Network identifier for this adapter. Only valid if nicType is NORMAL_NIC or DIRECT_NIC.
    vmExtId String
    • (Required) The globally unique identifier of a VM. It should be of type UUID.
    ipAddresses List<VmNetworkDeviceMigrateV2IpAddress>
    • (Optional) Ip config settings.
    extId string
    • (Required) The globally unique identifier of a Nic. It should be of type UUID.
    migrateType string
    • (Required) The type of IP address management for NIC migration. Valid values are:
    • ASSIGN_IP The type of NIC is Span-Destination.
    • RELEASE_IP The type of NIC is Normal.
    subnets VmNetworkDeviceMigrateV2Subnet[]
    • (Required) Network identifier for this adapter. Only valid if nicType is NORMAL_NIC or DIRECT_NIC.
    vmExtId string
    • (Required) The globally unique identifier of a VM. It should be of type UUID.
    ipAddresses VmNetworkDeviceMigrateV2IpAddress[]
    • (Optional) Ip config settings.
    ext_id str
    • (Required) The globally unique identifier of a Nic. It should be of type UUID.
    migrate_type str
    • (Required) The type of IP address management for NIC migration. Valid values are:
    • ASSIGN_IP The type of NIC is Span-Destination.
    • RELEASE_IP The type of NIC is Normal.
    subnets Sequence[VmNetworkDeviceMigrateV2SubnetArgs]
    • (Required) Network identifier for this adapter. Only valid if nicType is NORMAL_NIC or DIRECT_NIC.
    vm_ext_id str
    • (Required) The globally unique identifier of a VM. It should be of type UUID.
    ip_addresses Sequence[VmNetworkDeviceMigrateV2IpAddressArgs]
    • (Optional) Ip config settings.
    extId String
    • (Required) The globally unique identifier of a Nic. It should be of type UUID.
    migrateType String
    • (Required) The type of IP address management for NIC migration. Valid values are:
    • ASSIGN_IP The type of NIC is Span-Destination.
    • RELEASE_IP The type of NIC is Normal.
    subnets List<Property Map>
    • (Required) Network identifier for this adapter. Only valid if nicType is NORMAL_NIC or DIRECT_NIC.
    vmExtId String
    • (Required) The globally unique identifier of a VM. It should be of type UUID.
    ipAddresses List<Property Map>
    • (Optional) Ip config settings.

    Outputs

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

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

    Look up Existing VmNetworkDeviceMigrateV2 Resource

    Get an existing VmNetworkDeviceMigrateV2 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?: VmNetworkDeviceMigrateV2State, opts?: CustomResourceOptions): VmNetworkDeviceMigrateV2
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            ext_id: Optional[str] = None,
            ip_addresses: Optional[Sequence[VmNetworkDeviceMigrateV2IpAddressArgs]] = None,
            migrate_type: Optional[str] = None,
            subnets: Optional[Sequence[VmNetworkDeviceMigrateV2SubnetArgs]] = None,
            vm_ext_id: Optional[str] = None) -> VmNetworkDeviceMigrateV2
    func GetVmNetworkDeviceMigrateV2(ctx *Context, name string, id IDInput, state *VmNetworkDeviceMigrateV2State, opts ...ResourceOption) (*VmNetworkDeviceMigrateV2, error)
    public static VmNetworkDeviceMigrateV2 Get(string name, Input<string> id, VmNetworkDeviceMigrateV2State? state, CustomResourceOptions? opts = null)
    public static VmNetworkDeviceMigrateV2 get(String name, Output<String> id, VmNetworkDeviceMigrateV2State state, CustomResourceOptions options)
    resources:  _:    type: nutanix:VmNetworkDeviceMigrateV2    get:      id: ${id}
    import {
      to = nutanix_vmnetworkdevicemigratev2.example
      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:
    ExtId string
    • (Required) The globally unique identifier of a Nic. It should be of type UUID.
    IpAddresses List<PiersKarsenbarg.Nutanix.Inputs.VmNetworkDeviceMigrateV2IpAddress>
    • (Optional) Ip config settings.
    MigrateType string
    • (Required) The type of IP address management for NIC migration. Valid values are:
    • ASSIGN_IP The type of NIC is Span-Destination.
    • RELEASE_IP The type of NIC is Normal.
    Subnets List<PiersKarsenbarg.Nutanix.Inputs.VmNetworkDeviceMigrateV2Subnet>
    • (Required) Network identifier for this adapter. Only valid if nicType is NORMAL_NIC or DIRECT_NIC.
    VmExtId string
    • (Required) The globally unique identifier of a VM. It should be of type UUID.
    ExtId string
    • (Required) The globally unique identifier of a Nic. It should be of type UUID.
    IpAddresses []VmNetworkDeviceMigrateV2IpAddressArgs
    • (Optional) Ip config settings.
    MigrateType string
    • (Required) The type of IP address management for NIC migration. Valid values are:
    • ASSIGN_IP The type of NIC is Span-Destination.
    • RELEASE_IP The type of NIC is Normal.
    Subnets []VmNetworkDeviceMigrateV2SubnetArgs
    • (Required) Network identifier for this adapter. Only valid if nicType is NORMAL_NIC or DIRECT_NIC.
    VmExtId string
    • (Required) The globally unique identifier of a VM. It should be of type UUID.
    ext_id string
    • (Required) The globally unique identifier of a Nic. It should be of type UUID.
    ip_addresses list(object)
    • (Optional) Ip config settings.
    migrate_type string
    • (Required) The type of IP address management for NIC migration. Valid values are:
    • ASSIGN_IP The type of NIC is Span-Destination.
    • RELEASE_IP The type of NIC is Normal.
    subnets list(object)
    • (Required) Network identifier for this adapter. Only valid if nicType is NORMAL_NIC or DIRECT_NIC.
    vm_ext_id string
    • (Required) The globally unique identifier of a VM. It should be of type UUID.
    extId String
    • (Required) The globally unique identifier of a Nic. It should be of type UUID.
    ipAddresses List<VmNetworkDeviceMigrateV2IpAddress>
    • (Optional) Ip config settings.
    migrateType String
    • (Required) The type of IP address management for NIC migration. Valid values are:
    • ASSIGN_IP The type of NIC is Span-Destination.
    • RELEASE_IP The type of NIC is Normal.
    subnets List<VmNetworkDeviceMigrateV2Subnet>
    • (Required) Network identifier for this adapter. Only valid if nicType is NORMAL_NIC or DIRECT_NIC.
    vmExtId String
    • (Required) The globally unique identifier of a VM. It should be of type UUID.
    extId string
    • (Required) The globally unique identifier of a Nic. It should be of type UUID.
    ipAddresses VmNetworkDeviceMigrateV2IpAddress[]
    • (Optional) Ip config settings.
    migrateType string
    • (Required) The type of IP address management for NIC migration. Valid values are:
    • ASSIGN_IP The type of NIC is Span-Destination.
    • RELEASE_IP The type of NIC is Normal.
    subnets VmNetworkDeviceMigrateV2Subnet[]
    • (Required) Network identifier for this adapter. Only valid if nicType is NORMAL_NIC or DIRECT_NIC.
    vmExtId string
    • (Required) The globally unique identifier of a VM. It should be of type UUID.
    ext_id str
    • (Required) The globally unique identifier of a Nic. It should be of type UUID.
    ip_addresses Sequence[VmNetworkDeviceMigrateV2IpAddressArgs]
    • (Optional) Ip config settings.
    migrate_type str
    • (Required) The type of IP address management for NIC migration. Valid values are:
    • ASSIGN_IP The type of NIC is Span-Destination.
    • RELEASE_IP The type of NIC is Normal.
    subnets Sequence[VmNetworkDeviceMigrateV2SubnetArgs]
    • (Required) Network identifier for this adapter. Only valid if nicType is NORMAL_NIC or DIRECT_NIC.
    vm_ext_id str
    • (Required) The globally unique identifier of a VM. It should be of type UUID.
    extId String
    • (Required) The globally unique identifier of a Nic. It should be of type UUID.
    ipAddresses List<Property Map>
    • (Optional) Ip config settings.
    migrateType String
    • (Required) The type of IP address management for NIC migration. Valid values are:
    • ASSIGN_IP The type of NIC is Span-Destination.
    • RELEASE_IP The type of NIC is Normal.
    subnets List<Property Map>
    • (Required) Network identifier for this adapter. Only valid if nicType is NORMAL_NIC or DIRECT_NIC.
    vmExtId String
    • (Required) The globally unique identifier of a VM. It should be of type UUID.

    Supporting Types

    VmNetworkDeviceMigrateV2IpAddress, VmNetworkDeviceMigrateV2IpAddressArgs

    Value string
    • Ip address.

    See detailed information in Nutanix Migrate NIC to another Subnet for VM V4.

    PrefixLength int
    • (Optional) The prefix length of the network to which this host IPv4 address belongs.
    Value string
    • Ip address.

    See detailed information in Nutanix Migrate NIC to another Subnet for VM V4.

    PrefixLength int
    • (Optional) The prefix length of the network to which this host IPv4 address belongs.
    value string
    • Ip address.

    See detailed information in Nutanix Migrate NIC to another Subnet for VM V4.

    prefix_length number
    • (Optional) The prefix length of the network to which this host IPv4 address belongs.
    value String
    • Ip address.

    See detailed information in Nutanix Migrate NIC to another Subnet for VM V4.

    prefixLength Integer
    • (Optional) The prefix length of the network to which this host IPv4 address belongs.
    value string
    • Ip address.

    See detailed information in Nutanix Migrate NIC to another Subnet for VM V4.

    prefixLength number
    • (Optional) The prefix length of the network to which this host IPv4 address belongs.
    value str
    • Ip address.

    See detailed information in Nutanix Migrate NIC to another Subnet for VM V4.

    prefix_length int
    • (Optional) The prefix length of the network to which this host IPv4 address belongs.
    value String
    • Ip address.

    See detailed information in Nutanix Migrate NIC to another Subnet for VM V4.

    prefixLength Number
    • (Optional) The prefix length of the network to which this host IPv4 address belongs.

    VmNetworkDeviceMigrateV2Subnet, VmNetworkDeviceMigrateV2SubnetArgs

    ExtId string
    • (Optional) The globally unique identifier of a subnet. It should be of type UUID.
    ExtId string
    • (Optional) The globally unique identifier of a subnet. It should be of type UUID.
    ext_id string
    • (Optional) The globally unique identifier of a subnet. It should be of type UUID.
    extId String
    • (Optional) The globally unique identifier of a subnet. It should be of type UUID.
    extId string
    • (Optional) The globally unique identifier of a subnet. It should be of type UUID.
    ext_id str
    • (Optional) The globally unique identifier of a subnet. It should be of type UUID.
    extId String
    • (Optional) The globally unique identifier of a subnet. It should be of type UUID.

    Package Details

    Repository
    nutanix pierskarsenbarg/pulumi-nutanix
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the nutanix Terraform Provider.
    nutanix logo
    Viewing docs for Nutanix v0.13.0
    published on Tuesday, Apr 28, 2026 by Piers Karsenbarg
      Try Pulumi Cloud free. Your team will thank you.