published on Tuesday, Apr 28, 2026 by Piers Karsenbarg
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:
- 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_IPThe type of NIC is Span-Destination.RELEASE_IPThe type of NIC is Normal.
- Subnets
List<Piers
Karsenbarg. Nutanix. Inputs. Vm Network Device Migrate V2Subnet> - (Required) Network identifier for this adapter. Only valid if nicType is NORMAL_NIC or DIRECT_NIC.
- Vm
Ext stringId - (Required) The globally unique identifier of a VM. It should be of type UUID.
- Ip
Addresses List<PiersKarsenbarg. Nutanix. Inputs. Vm Network Device Migrate V2Ip Address> - (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_IPThe type of NIC is Span-Destination.RELEASE_IPThe type of NIC is Normal.
- Subnets
[]Vm
Network Device Migrate V2Subnet Args - (Required) Network identifier for this adapter. Only valid if nicType is NORMAL_NIC or DIRECT_NIC.
- Vm
Ext stringId - (Required) The globally unique identifier of a VM. It should be of type UUID.
- Ip
Addresses []VmNetwork Device Migrate V2Ip Address Args - (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_IPThe type of NIC is Span-Destination.RELEASE_IPThe 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_ stringid - (Required) The globally unique identifier of a VM. It should be of type UUID.
- ip_
addresses list(object) - (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_IPThe type of NIC is Span-Destination.RELEASE_IPThe type of NIC is Normal.
- subnets
List<Vm
Network Device Migrate V2Subnet> - (Required) Network identifier for this adapter. Only valid if nicType is NORMAL_NIC or DIRECT_NIC.
- vm
Ext StringId - (Required) The globally unique identifier of a VM. It should be of type UUID.
- ip
Addresses List<VmNetwork Device Migrate V2Ip Address> - (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_IPThe type of NIC is Span-Destination.RELEASE_IPThe type of NIC is Normal.
- subnets
Vm
Network Device Migrate V2Subnet[] - (Required) Network identifier for this adapter. Only valid if nicType is NORMAL_NIC or DIRECT_NIC.
- vm
Ext stringId - (Required) The globally unique identifier of a VM. It should be of type UUID.
- ip
Addresses VmNetwork Device Migrate V2Ip Address[] - (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_IPThe type of NIC is Span-Destination.RELEASE_IPThe type of NIC is Normal.
- subnets
Sequence[Vm
Network Device Migrate V2Subnet Args] - (Required) Network identifier for this adapter. Only valid if nicType is NORMAL_NIC or DIRECT_NIC.
- vm_
ext_ strid - (Required) The globally unique identifier of a VM. It should be of type UUID.
- ip_
addresses Sequence[VmNetwork Device Migrate V2Ip Address Args] - (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_IPThe type of NIC is Span-Destination.RELEASE_IPThe 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.
- vm
Ext StringId - (Required) The globally unique identifier of a VM. It should be of type UUID.
- ip
Addresses 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) -> VmNetworkDeviceMigrateV2func 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.
- Ext
Id string - (Required) The globally unique identifier of a Nic. It should be of type UUID.
- Ip
Addresses List<PiersKarsenbarg. Nutanix. Inputs. Vm Network Device Migrate V2Ip Address> - (Optional) Ip config settings.
- Migrate
Type string - (Required) The type of IP address management for NIC migration. Valid values are:
ASSIGN_IPThe type of NIC is Span-Destination.RELEASE_IPThe type of NIC is Normal.
- Subnets
List<Piers
Karsenbarg. Nutanix. Inputs. Vm Network Device Migrate V2Subnet> - (Required) Network identifier for this adapter. Only valid if nicType is NORMAL_NIC or DIRECT_NIC.
- Vm
Ext stringId - (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 []VmNetwork Device Migrate V2Ip Address Args - (Optional) Ip config settings.
- Migrate
Type string - (Required) The type of IP address management for NIC migration. Valid values are:
ASSIGN_IPThe type of NIC is Span-Destination.RELEASE_IPThe type of NIC is Normal.
- Subnets
[]Vm
Network Device Migrate V2Subnet Args - (Required) Network identifier for this adapter. Only valid if nicType is NORMAL_NIC or DIRECT_NIC.
- Vm
Ext stringId - (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_IPThe type of NIC is Span-Destination.RELEASE_IPThe 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_ stringid - (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<VmNetwork Device Migrate V2Ip Address> - (Optional) Ip config settings.
- migrate
Type String - (Required) The type of IP address management for NIC migration. Valid values are:
ASSIGN_IPThe type of NIC is Span-Destination.RELEASE_IPThe type of NIC is Normal.
- subnets
List<Vm
Network Device Migrate V2Subnet> - (Required) Network identifier for this adapter. Only valid if nicType is NORMAL_NIC or DIRECT_NIC.
- vm
Ext StringId - (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 VmNetwork Device Migrate V2Ip Address[] - (Optional) Ip config settings.
- migrate
Type string - (Required) The type of IP address management for NIC migration. Valid values are:
ASSIGN_IPThe type of NIC is Span-Destination.RELEASE_IPThe type of NIC is Normal.
- subnets
Vm
Network Device Migrate V2Subnet[] - (Required) Network identifier for this adapter. Only valid if nicType is NORMAL_NIC or DIRECT_NIC.
- vm
Ext stringId - (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[VmNetwork Device Migrate V2Ip Address Args] - (Optional) Ip config settings.
- migrate_
type str - (Required) The type of IP address management for NIC migration. Valid values are:
ASSIGN_IPThe type of NIC is Span-Destination.RELEASE_IPThe type of NIC is Normal.
- subnets
Sequence[Vm
Network Device Migrate V2Subnet Args] - (Required) Network identifier for this adapter. Only valid if nicType is NORMAL_NIC or DIRECT_NIC.
- vm_
ext_ strid - (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<Property Map> - (Optional) Ip config settings.
- migrate
Type String - (Required) The type of IP address management for NIC migration. Valid values are:
ASSIGN_IPThe type of NIC is Span-Destination.RELEASE_IPThe 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.
- vm
Ext StringId - (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.
- 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.
- 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.
- 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.
- prefix
Length 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.
- prefix
Length 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.
- prefix
Length Number - (Optional) The prefix length of the network to which this host IPv4 address belongs.
VmNetworkDeviceMigrateV2Subnet, VmNetworkDeviceMigrateV2SubnetArgs
- Ext
Id 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.
- ext_
id 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.
- ext
Id 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.
- ext
Id 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
nutanixTerraform Provider.
published on Tuesday, Apr 28, 2026 by Piers Karsenbarg
