1. Packages
  2. Nutanix
  3. API Docs
  4. getVirtualMachinesV2
Nutanix v0.7.4 published on Friday, Mar 21, 2025 by Piers Karsenbarg

nutanix.getVirtualMachinesV2

Explore with Pulumi AI

nutanix logo
Nutanix v0.7.4 published on Friday, Mar 21, 2025 by Piers Karsenbarg

    Lists the Virtual Machines defined on the system. List of Virtual Machines can be further filtered out using various filtering options.

    Example

    import * as pulumi from "@pulumi/pulumi";
    import * as nutanix from "@pulumi/nutanix";
    
    const vms = nutanix.getVirtualMachinesV2({});
    const vms_1 = nutanix.getVirtualMachinesV2({
        limit: 2,
        page: 0,
    });
    const vms_2 = nutanix.getVirtualMachinesV2({
        filter: "name eq 'test-vm-filter'",
    });
    
    import pulumi
    import pulumi_nutanix as nutanix
    
    vms = nutanix.get_virtual_machines_v2()
    vms_1 = nutanix.get_virtual_machines_v2(limit=2,
        page=0)
    vms_2 = nutanix.get_virtual_machines_v2(filter="name eq 'test-vm-filter'")
    
    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.GetVirtualMachinesV2(ctx, &nutanix.GetVirtualMachinesV2Args{}, nil)
    		if err != nil {
    			return err
    		}
    		_, err = nutanix.GetVirtualMachinesV2(ctx, &nutanix.GetVirtualMachinesV2Args{
    			Limit: pulumi.IntRef(2),
    			Page:  pulumi.IntRef(0),
    		}, nil)
    		if err != nil {
    			return err
    		}
    		_, err = nutanix.GetVirtualMachinesV2(ctx, &nutanix.GetVirtualMachinesV2Args{
    			Filter: pulumi.StringRef("name eq 'test-vm-filter'"),
    		}, nil)
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Nutanix = Pulumi.Nutanix;
    
    return await Deployment.RunAsync(() => 
    {
        var vms = Nutanix.GetVirtualMachinesV2.Invoke();
    
        var vms_1 = Nutanix.GetVirtualMachinesV2.Invoke(new()
        {
            Limit = 2,
            Page = 0,
        });
    
        var vms_2 = Nutanix.GetVirtualMachinesV2.Invoke(new()
        {
            Filter = "name eq 'test-vm-filter'",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.nutanix.NutanixFunctions;
    import com.pulumi.nutanix.inputs.GetVirtualMachinesV2Args;
    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) {
            final var vms = NutanixFunctions.getVirtualMachinesV2();
    
            final var vms-1 = NutanixFunctions.getVirtualMachinesV2(GetVirtualMachinesV2Args.builder()
                .limit(2)
                .page(0)
                .build());
    
            final var vms-2 = NutanixFunctions.getVirtualMachinesV2(GetVirtualMachinesV2Args.builder()
                .filter("name eq 'test-vm-filter'")
                .build());
    
        }
    }
    
    variables:
      vms:
        fn::invoke:
          function: nutanix:getVirtualMachinesV2
          arguments: {}
      vms-1:
        fn::invoke:
          function: nutanix:getVirtualMachinesV2
          arguments:
            limit: 2
            page: 0
      vms-2:
        fn::invoke:
          function: nutanix:getVirtualMachinesV2
          arguments:
            filter: name eq 'test-vm-filter'
    

    Using getVirtualMachinesV2

    Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.

    function getVirtualMachinesV2(args: GetVirtualMachinesV2Args, opts?: InvokeOptions): Promise<GetVirtualMachinesV2Result>
    function getVirtualMachinesV2Output(args: GetVirtualMachinesV2OutputArgs, opts?: InvokeOptions): Output<GetVirtualMachinesV2Result>
    def get_virtual_machines_v2(filter: Optional[str] = None,
                                limit: Optional[int] = None,
                                order_by: Optional[str] = None,
                                page: Optional[int] = None,
                                select: Optional[str] = None,
                                opts: Optional[InvokeOptions] = None) -> GetVirtualMachinesV2Result
    def get_virtual_machines_v2_output(filter: Optional[pulumi.Input[str]] = None,
                                limit: Optional[pulumi.Input[int]] = None,
                                order_by: Optional[pulumi.Input[str]] = None,
                                page: Optional[pulumi.Input[int]] = None,
                                select: Optional[pulumi.Input[str]] = None,
                                opts: Optional[InvokeOptions] = None) -> Output[GetVirtualMachinesV2Result]
    func GetVirtualMachinesV2(ctx *Context, args *GetVirtualMachinesV2Args, opts ...InvokeOption) (*GetVirtualMachinesV2Result, error)
    func GetVirtualMachinesV2Output(ctx *Context, args *GetVirtualMachinesV2OutputArgs, opts ...InvokeOption) GetVirtualMachinesV2ResultOutput

    > Note: This function is named GetVirtualMachinesV2 in the Go SDK.

    public static class GetVirtualMachinesV2 
    {
        public static Task<GetVirtualMachinesV2Result> InvokeAsync(GetVirtualMachinesV2Args args, InvokeOptions? opts = null)
        public static Output<GetVirtualMachinesV2Result> Invoke(GetVirtualMachinesV2InvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetVirtualMachinesV2Result> getVirtualMachinesV2(GetVirtualMachinesV2Args args, InvokeOptions options)
    public static Output<GetVirtualMachinesV2Result> getVirtualMachinesV2(GetVirtualMachinesV2Args args, InvokeOptions options)
    
    fn::invoke:
      function: nutanix:index/getVirtualMachinesV2:getVirtualMachinesV2
      arguments:
        # arguments dictionary

    The following arguments are supported:

    Filter string
    A URL query parameter that allows clients to filter a collection of resources. The expression specified with $filter is evaluated for each resource in the collection, and only items where the expression evaluates to true are included in the response. Expression specified with the $filter must conform to the OData V4.01 URL conventions
    Limit int
    A URL query parameter that specifies the total number of records returned in the result set. Must be a positive integer between 1 and 100. Any number out of this range will lead to a validation error. If the limit is not provided, a default value of 50 records will be returned in the result set.
    OrderBy string
    A URL query parameter that allows clients to specify the sort criteria for the returned list of objects. Resources can be sorted in ascending order using asc or descending order using desc. If asc or desc are not specified, the resources will be sorted in ascending order by default
    Page int
    A URL query parameter that specifies the page number of the result set. It must be a positive integer between 0 and the maximum number of pages that are available for that resource. Any number out of this range might lead to no results.
    Select string
    A URL query parameter that allows clients to request a specific set of properties for each entity or complex type. Expression specified with the $select must conform to the OData V4.01 URL conventions.
    Filter string
    A URL query parameter that allows clients to filter a collection of resources. The expression specified with $filter is evaluated for each resource in the collection, and only items where the expression evaluates to true are included in the response. Expression specified with the $filter must conform to the OData V4.01 URL conventions
    Limit int
    A URL query parameter that specifies the total number of records returned in the result set. Must be a positive integer between 1 and 100. Any number out of this range will lead to a validation error. If the limit is not provided, a default value of 50 records will be returned in the result set.
    OrderBy string
    A URL query parameter that allows clients to specify the sort criteria for the returned list of objects. Resources can be sorted in ascending order using asc or descending order using desc. If asc or desc are not specified, the resources will be sorted in ascending order by default
    Page int
    A URL query parameter that specifies the page number of the result set. It must be a positive integer between 0 and the maximum number of pages that are available for that resource. Any number out of this range might lead to no results.
    Select string
    A URL query parameter that allows clients to request a specific set of properties for each entity or complex type. Expression specified with the $select must conform to the OData V4.01 URL conventions.
    filter String
    A URL query parameter that allows clients to filter a collection of resources. The expression specified with $filter is evaluated for each resource in the collection, and only items where the expression evaluates to true are included in the response. Expression specified with the $filter must conform to the OData V4.01 URL conventions
    limit Integer
    A URL query parameter that specifies the total number of records returned in the result set. Must be a positive integer between 1 and 100. Any number out of this range will lead to a validation error. If the limit is not provided, a default value of 50 records will be returned in the result set.
    orderBy String
    A URL query parameter that allows clients to specify the sort criteria for the returned list of objects. Resources can be sorted in ascending order using asc or descending order using desc. If asc or desc are not specified, the resources will be sorted in ascending order by default
    page Integer
    A URL query parameter that specifies the page number of the result set. It must be a positive integer between 0 and the maximum number of pages that are available for that resource. Any number out of this range might lead to no results.
    select String
    A URL query parameter that allows clients to request a specific set of properties for each entity or complex type. Expression specified with the $select must conform to the OData V4.01 URL conventions.
    filter string
    A URL query parameter that allows clients to filter a collection of resources. The expression specified with $filter is evaluated for each resource in the collection, and only items where the expression evaluates to true are included in the response. Expression specified with the $filter must conform to the OData V4.01 URL conventions
    limit number
    A URL query parameter that specifies the total number of records returned in the result set. Must be a positive integer between 1 and 100. Any number out of this range will lead to a validation error. If the limit is not provided, a default value of 50 records will be returned in the result set.
    orderBy string
    A URL query parameter that allows clients to specify the sort criteria for the returned list of objects. Resources can be sorted in ascending order using asc or descending order using desc. If asc or desc are not specified, the resources will be sorted in ascending order by default
    page number
    A URL query parameter that specifies the page number of the result set. It must be a positive integer between 0 and the maximum number of pages that are available for that resource. Any number out of this range might lead to no results.
    select string
    A URL query parameter that allows clients to request a specific set of properties for each entity or complex type. Expression specified with the $select must conform to the OData V4.01 URL conventions.
    filter str
    A URL query parameter that allows clients to filter a collection of resources. The expression specified with $filter is evaluated for each resource in the collection, and only items where the expression evaluates to true are included in the response. Expression specified with the $filter must conform to the OData V4.01 URL conventions
    limit int
    A URL query parameter that specifies the total number of records returned in the result set. Must be a positive integer between 1 and 100. Any number out of this range will lead to a validation error. If the limit is not provided, a default value of 50 records will be returned in the result set.
    order_by str
    A URL query parameter that allows clients to specify the sort criteria for the returned list of objects. Resources can be sorted in ascending order using asc or descending order using desc. If asc or desc are not specified, the resources will be sorted in ascending order by default
    page int
    A URL query parameter that specifies the page number of the result set. It must be a positive integer between 0 and the maximum number of pages that are available for that resource. Any number out of this range might lead to no results.
    select str
    A URL query parameter that allows clients to request a specific set of properties for each entity or complex type. Expression specified with the $select must conform to the OData V4.01 URL conventions.
    filter String
    A URL query parameter that allows clients to filter a collection of resources. The expression specified with $filter is evaluated for each resource in the collection, and only items where the expression evaluates to true are included in the response. Expression specified with the $filter must conform to the OData V4.01 URL conventions
    limit Number
    A URL query parameter that specifies the total number of records returned in the result set. Must be a positive integer between 1 and 100. Any number out of this range will lead to a validation error. If the limit is not provided, a default value of 50 records will be returned in the result set.
    orderBy String
    A URL query parameter that allows clients to specify the sort criteria for the returned list of objects. Resources can be sorted in ascending order using asc or descending order using desc. If asc or desc are not specified, the resources will be sorted in ascending order by default
    page Number
    A URL query parameter that specifies the page number of the result set. It must be a positive integer between 0 and the maximum number of pages that are available for that resource. Any number out of this range might lead to no results.
    select String
    A URL query parameter that allows clients to request a specific set of properties for each entity or complex type. Expression specified with the $select must conform to the OData V4.01 URL conventions.

    getVirtualMachinesV2 Result

    The following output properties are available:

    Id string
    The provider-assigned unique ID for this managed resource.
    Vms List<PiersKarsenbarg.Nutanix.Outputs.GetVirtualMachinesV2Vm>
    List of all vms
    Filter string
    A URL query parameter that allows clients to filter a collection of resources. The expression specified with $filter is evaluated for each resource in the collection, and only items where the expression evaluates to true are included in the response. Expression specified with the $filter must conform to the OData V4.01 URL conventions
    Limit int
    A URL query parameter that specifies the total number of records returned in the result set. Must be a positive integer between 1 and 100. Any number out of this range will lead to a validation error. If the limit is not provided, a default value of 50 records will be returned in the result set.
    OrderBy string
    A URL query parameter that allows clients to specify the sort criteria for the returned list of objects. Resources can be sorted in ascending order using asc or descending order using desc. If asc or desc are not specified, the resources will be sorted in ascending order by default
    Page int
    A URL query parameter that specifies the page number of the result set. It must be a positive integer between 0 and the maximum number of pages that are available for that resource. Any number out of this range might lead to no results.
    Select string
    A URL query parameter that allows clients to request a specific set of properties for each entity or complex type. Expression specified with the $select must conform to the OData V4.01 URL conventions.
    Id string
    The provider-assigned unique ID for this managed resource.
    Vms []GetVirtualMachinesV2Vm
    List of all vms
    Filter string
    A URL query parameter that allows clients to filter a collection of resources. The expression specified with $filter is evaluated for each resource in the collection, and only items where the expression evaluates to true are included in the response. Expression specified with the $filter must conform to the OData V4.01 URL conventions
    Limit int
    A URL query parameter that specifies the total number of records returned in the result set. Must be a positive integer between 1 and 100. Any number out of this range will lead to a validation error. If the limit is not provided, a default value of 50 records will be returned in the result set.
    OrderBy string
    A URL query parameter that allows clients to specify the sort criteria for the returned list of objects. Resources can be sorted in ascending order using asc or descending order using desc. If asc or desc are not specified, the resources will be sorted in ascending order by default
    Page int
    A URL query parameter that specifies the page number of the result set. It must be a positive integer between 0 and the maximum number of pages that are available for that resource. Any number out of this range might lead to no results.
    Select string
    A URL query parameter that allows clients to request a specific set of properties for each entity or complex type. Expression specified with the $select must conform to the OData V4.01 URL conventions.
    id String
    The provider-assigned unique ID for this managed resource.
    vms List<GetVirtualMachinesV2Vm>
    List of all vms
    filter String
    A URL query parameter that allows clients to filter a collection of resources. The expression specified with $filter is evaluated for each resource in the collection, and only items where the expression evaluates to true are included in the response. Expression specified with the $filter must conform to the OData V4.01 URL conventions
    limit Integer
    A URL query parameter that specifies the total number of records returned in the result set. Must be a positive integer between 1 and 100. Any number out of this range will lead to a validation error. If the limit is not provided, a default value of 50 records will be returned in the result set.
    orderBy String
    A URL query parameter that allows clients to specify the sort criteria for the returned list of objects. Resources can be sorted in ascending order using asc or descending order using desc. If asc or desc are not specified, the resources will be sorted in ascending order by default
    page Integer
    A URL query parameter that specifies the page number of the result set. It must be a positive integer between 0 and the maximum number of pages that are available for that resource. Any number out of this range might lead to no results.
    select String
    A URL query parameter that allows clients to request a specific set of properties for each entity or complex type. Expression specified with the $select must conform to the OData V4.01 URL conventions.
    id string
    The provider-assigned unique ID for this managed resource.
    vms GetVirtualMachinesV2Vm[]
    List of all vms
    filter string
    A URL query parameter that allows clients to filter a collection of resources. The expression specified with $filter is evaluated for each resource in the collection, and only items where the expression evaluates to true are included in the response. Expression specified with the $filter must conform to the OData V4.01 URL conventions
    limit number
    A URL query parameter that specifies the total number of records returned in the result set. Must be a positive integer between 1 and 100. Any number out of this range will lead to a validation error. If the limit is not provided, a default value of 50 records will be returned in the result set.
    orderBy string
    A URL query parameter that allows clients to specify the sort criteria for the returned list of objects. Resources can be sorted in ascending order using asc or descending order using desc. If asc or desc are not specified, the resources will be sorted in ascending order by default
    page number
    A URL query parameter that specifies the page number of the result set. It must be a positive integer between 0 and the maximum number of pages that are available for that resource. Any number out of this range might lead to no results.
    select string
    A URL query parameter that allows clients to request a specific set of properties for each entity or complex type. Expression specified with the $select must conform to the OData V4.01 URL conventions.
    id str
    The provider-assigned unique ID for this managed resource.
    vms Sequence[GetVirtualMachinesV2Vm]
    List of all vms
    filter str
    A URL query parameter that allows clients to filter a collection of resources. The expression specified with $filter is evaluated for each resource in the collection, and only items where the expression evaluates to true are included in the response. Expression specified with the $filter must conform to the OData V4.01 URL conventions
    limit int
    A URL query parameter that specifies the total number of records returned in the result set. Must be a positive integer between 1 and 100. Any number out of this range will lead to a validation error. If the limit is not provided, a default value of 50 records will be returned in the result set.
    order_by str
    A URL query parameter that allows clients to specify the sort criteria for the returned list of objects. Resources can be sorted in ascending order using asc or descending order using desc. If asc or desc are not specified, the resources will be sorted in ascending order by default
    page int
    A URL query parameter that specifies the page number of the result set. It must be a positive integer between 0 and the maximum number of pages that are available for that resource. Any number out of this range might lead to no results.
    select str
    A URL query parameter that allows clients to request a specific set of properties for each entity or complex type. Expression specified with the $select must conform to the OData V4.01 URL conventions.
    id String
    The provider-assigned unique ID for this managed resource.
    vms List<Property Map>
    List of all vms
    filter String
    A URL query parameter that allows clients to filter a collection of resources. The expression specified with $filter is evaluated for each resource in the collection, and only items where the expression evaluates to true are included in the response. Expression specified with the $filter must conform to the OData V4.01 URL conventions
    limit Number
    A URL query parameter that specifies the total number of records returned in the result set. Must be a positive integer between 1 and 100. Any number out of this range will lead to a validation error. If the limit is not provided, a default value of 50 records will be returned in the result set.
    orderBy String
    A URL query parameter that allows clients to specify the sort criteria for the returned list of objects. Resources can be sorted in ascending order using asc or descending order using desc. If asc or desc are not specified, the resources will be sorted in ascending order by default
    page Number
    A URL query parameter that specifies the page number of the result set. It must be a positive integer between 0 and the maximum number of pages that are available for that resource. Any number out of this range might lead to no results.
    select String
    A URL query parameter that allows clients to request a specific set of properties for each entity or complex type. Expression specified with the $select must conform to the OData V4.01 URL conventions.

    Supporting Types

    GetVirtualMachinesV2Vm

    ApcConfigs List<PiersKarsenbarg.Nutanix.Inputs.GetVirtualMachinesV2VmApcConfig>
    Advanced Processor Compatibility configuration for the VM. Enabling this retains the CPU model for the VM across power cycles and migrations.
    AvailabilityZones List<PiersKarsenbarg.Nutanix.Inputs.GetVirtualMachinesV2VmAvailabilityZone>
    BiosUuid string
    BIOS UUID of the VM. It should be of type UUID.
    BootConfigs List<PiersKarsenbarg.Nutanix.Inputs.GetVirtualMachinesV2VmBootConfig>
    Indicates the order of device types in which the VM should try to boot from. If the boot device order is not provided the system will decide an appropriate boot device order.
    Categories List<PiersKarsenbarg.Nutanix.Inputs.GetVirtualMachinesV2VmCategory>
    Categories for the VM.
    CdRoms List<PiersKarsenbarg.Nutanix.Inputs.GetVirtualMachinesV2VmCdRom>
    CD-ROMs attached to the VM.
    Clusters List<PiersKarsenbarg.Nutanix.Inputs.GetVirtualMachinesV2VmCluster>
    Reference to a cluster.
    CreateTime string
    VM creation time
    Description string
    VM description
    Disks List<PiersKarsenbarg.Nutanix.Inputs.GetVirtualMachinesV2VmDisk>
    Disks attached to the VM.
    EnabledCpuFeatures List<string>
    The list of additional CPU features to be enabled. HardwareVirtualization: Indicates whether hardware assisted virtualization should be enabled for the Guest OS or not. Once enabled, the Guest OS can deploy a nested hypervisor
    ExtId string
    A globally unique identifier of an instance that is suitable for external consumption.
    GenerationUuid string
    Generation UUID of the VM. It should be of type UUID.
    Gpuses List<PiersKarsenbarg.Nutanix.Inputs.GetVirtualMachinesV2VmGpus>
    GPUs attached to the VM.
    GuestCustomizations List<PiersKarsenbarg.Nutanix.Inputs.GetVirtualMachinesV2VmGuestCustomization>
    Stage a Sysprep or cloud-init configuration file to be used by the guest for the next boot. Note that the Sysprep command must be used to generalize the Windows VMs before triggering this API call.
    GuestTools List<PiersKarsenbarg.Nutanix.Inputs.GetVirtualMachinesV2VmGuestTool>
    The details about Nutanix Guest Tools for a VM.
    HardwareClockTimezone string
    VM hardware clock timezone in IANA TZDB format (America/Los_Angeles).
    Hosts List<PiersKarsenbarg.Nutanix.Inputs.GetVirtualMachinesV2VmHost>
    Reference to the host, the VM is running on.
    IsAgentVm bool
    Indicates whether the VM is an agent VM or not. When their host enters maintenance mode, once the normal VMs are evacuated, the agent VMs are powered off. When the host is restored, agent VMs are powered on before the normal VMs are restored. In other words, agent VMs cannot be HA-protected or live migrated.
    IsBrandingEnabled bool
    Indicates whether to remove AHV branding from VM firmware tables or not.
    IsCpuHotplugEnabled bool
    Indicates whether the VM CPU hotplug is enabled.
    IsCpuPassthroughEnabled bool
    Indicates whether to passthrough the host CPU features to the guest or not. Enabling this will make VM incapable of live migration.
    IsGpuConsoleEnabled bool
    Indicates whether the vGPU console is enabled or not.
    IsMemoryOvercommitEnabled bool
    Indicates whether the memory overcommit feature should be enabled for the VM or not. If enabled, parts of the VM memory may reside outside of the hypervisor physical memory. Once enabled, it should be expected that the VM may suffer performance degradation.
    IsScsiControllerEnabled bool
    Indicates whether the VM SCSI controller is enabled.
    IsVcpuHardPinningEnabled bool
    Indicates whether the vCPUs should be hard pinned to specific pCPUs or not.
    IsVgaConsoleEnabled bool
    Indicates whether the VGA console should be disabled or not.
    MachineType string
    Machine type for the VM. Machine type Q35 is required for secure boot and does not support IDE disks.
    MemorySizeBytes int
    Memory size in bytes.
    Name string
    VM name.
    Nics List<PiersKarsenbarg.Nutanix.Inputs.GetVirtualMachinesV2VmNic>
    NICs attached to the VM.
    NumCoresPerSocket int
    Number of cores per socket.
    NumNumaNodes int
    Number of NUMA nodes. 0 means NUMA is disabled.
    NumSockets int
    Number of vCPU sockets.
    NumThreadsPerCore int
    Number of threads per core
    OwnershipInfos List<PiersKarsenbarg.Nutanix.Inputs.GetVirtualMachinesV2VmOwnershipInfo>
    Ownership information for the VM.
    PowerState string
    ProtectionPolicyStates List<PiersKarsenbarg.Nutanix.Inputs.GetVirtualMachinesV2VmProtectionPolicyState>
    Status of protection policy applied to this VM.
    ProtectionType string
    The type of protection applied on a VM. PD_PROTECTED indicates a VM is protected using the Prism Element. RULE_PROTECTED indicates a VM protection using the Prism Central.
    SerialPorts List<PiersKarsenbarg.Nutanix.Inputs.GetVirtualMachinesV2VmSerialPort>
    Serial ports configured on the VM.
    Sources List<PiersKarsenbarg.Nutanix.Inputs.GetVirtualMachinesV2VmSource>
    Reference to an entity that the VM should be cloned or created from
    StorageConfigs List<PiersKarsenbarg.Nutanix.Inputs.GetVirtualMachinesV2VmStorageConfig>
    Storage configuration for VM.
    UpdateTime string
    VM last updated time.
    VtpmConfigs List<PiersKarsenbarg.Nutanix.Inputs.GetVirtualMachinesV2VmVtpmConfig>
    Indicates how the vTPM for the VM should be configured.
    ApcConfigs []GetVirtualMachinesV2VmApcConfig
    Advanced Processor Compatibility configuration for the VM. Enabling this retains the CPU model for the VM across power cycles and migrations.
    AvailabilityZones []GetVirtualMachinesV2VmAvailabilityZone
    BiosUuid string
    BIOS UUID of the VM. It should be of type UUID.
    BootConfigs []GetVirtualMachinesV2VmBootConfig
    Indicates the order of device types in which the VM should try to boot from. If the boot device order is not provided the system will decide an appropriate boot device order.
    Categories []GetVirtualMachinesV2VmCategory
    Categories for the VM.
    CdRoms []GetVirtualMachinesV2VmCdRom
    CD-ROMs attached to the VM.
    Clusters []GetVirtualMachinesV2VmCluster
    Reference to a cluster.
    CreateTime string
    VM creation time
    Description string
    VM description
    Disks []GetVirtualMachinesV2VmDisk
    Disks attached to the VM.
    EnabledCpuFeatures []string
    The list of additional CPU features to be enabled. HardwareVirtualization: Indicates whether hardware assisted virtualization should be enabled for the Guest OS or not. Once enabled, the Guest OS can deploy a nested hypervisor
    ExtId string
    A globally unique identifier of an instance that is suitable for external consumption.
    GenerationUuid string
    Generation UUID of the VM. It should be of type UUID.
    Gpuses []GetVirtualMachinesV2VmGpus
    GPUs attached to the VM.
    GuestCustomizations []GetVirtualMachinesV2VmGuestCustomization
    Stage a Sysprep or cloud-init configuration file to be used by the guest for the next boot. Note that the Sysprep command must be used to generalize the Windows VMs before triggering this API call.
    GuestTools []GetVirtualMachinesV2VmGuestTool
    The details about Nutanix Guest Tools for a VM.
    HardwareClockTimezone string
    VM hardware clock timezone in IANA TZDB format (America/Los_Angeles).
    Hosts []GetVirtualMachinesV2VmHost
    Reference to the host, the VM is running on.
    IsAgentVm bool
    Indicates whether the VM is an agent VM or not. When their host enters maintenance mode, once the normal VMs are evacuated, the agent VMs are powered off. When the host is restored, agent VMs are powered on before the normal VMs are restored. In other words, agent VMs cannot be HA-protected or live migrated.
    IsBrandingEnabled bool
    Indicates whether to remove AHV branding from VM firmware tables or not.
    IsCpuHotplugEnabled bool
    Indicates whether the VM CPU hotplug is enabled.
    IsCpuPassthroughEnabled bool
    Indicates whether to passthrough the host CPU features to the guest or not. Enabling this will make VM incapable of live migration.
    IsGpuConsoleEnabled bool
    Indicates whether the vGPU console is enabled or not.
    IsMemoryOvercommitEnabled bool
    Indicates whether the memory overcommit feature should be enabled for the VM or not. If enabled, parts of the VM memory may reside outside of the hypervisor physical memory. Once enabled, it should be expected that the VM may suffer performance degradation.
    IsScsiControllerEnabled bool
    Indicates whether the VM SCSI controller is enabled.
    IsVcpuHardPinningEnabled bool
    Indicates whether the vCPUs should be hard pinned to specific pCPUs or not.
    IsVgaConsoleEnabled bool
    Indicates whether the VGA console should be disabled or not.
    MachineType string
    Machine type for the VM. Machine type Q35 is required for secure boot and does not support IDE disks.
    MemorySizeBytes int
    Memory size in bytes.
    Name string
    VM name.
    Nics []GetVirtualMachinesV2VmNic
    NICs attached to the VM.
    NumCoresPerSocket int
    Number of cores per socket.
    NumNumaNodes int
    Number of NUMA nodes. 0 means NUMA is disabled.
    NumSockets int
    Number of vCPU sockets.
    NumThreadsPerCore int
    Number of threads per core
    OwnershipInfos []GetVirtualMachinesV2VmOwnershipInfo
    Ownership information for the VM.
    PowerState string
    ProtectionPolicyStates []GetVirtualMachinesV2VmProtectionPolicyState
    Status of protection policy applied to this VM.
    ProtectionType string
    The type of protection applied on a VM. PD_PROTECTED indicates a VM is protected using the Prism Element. RULE_PROTECTED indicates a VM protection using the Prism Central.
    SerialPorts []GetVirtualMachinesV2VmSerialPort
    Serial ports configured on the VM.
    Sources []GetVirtualMachinesV2VmSource
    Reference to an entity that the VM should be cloned or created from
    StorageConfigs []GetVirtualMachinesV2VmStorageConfig
    Storage configuration for VM.
    UpdateTime string
    VM last updated time.
    VtpmConfigs []GetVirtualMachinesV2VmVtpmConfig
    Indicates how the vTPM for the VM should be configured.
    apcConfigs List<GetVirtualMachinesV2VmApcConfig>
    Advanced Processor Compatibility configuration for the VM. Enabling this retains the CPU model for the VM across power cycles and migrations.
    availabilityZones List<GetVirtualMachinesV2VmAvailabilityZone>
    biosUuid String
    BIOS UUID of the VM. It should be of type UUID.
    bootConfigs List<GetVirtualMachinesV2VmBootConfig>
    Indicates the order of device types in which the VM should try to boot from. If the boot device order is not provided the system will decide an appropriate boot device order.
    categories List<GetVirtualMachinesV2VmCategory>
    Categories for the VM.
    cdRoms List<GetVirtualMachinesV2VmCdRom>
    CD-ROMs attached to the VM.
    clusters List<GetVirtualMachinesV2VmCluster>
    Reference to a cluster.
    createTime String
    VM creation time
    description String
    VM description
    disks List<GetVirtualMachinesV2VmDisk>
    Disks attached to the VM.
    enabledCpuFeatures List<String>
    The list of additional CPU features to be enabled. HardwareVirtualization: Indicates whether hardware assisted virtualization should be enabled for the Guest OS or not. Once enabled, the Guest OS can deploy a nested hypervisor
    extId String
    A globally unique identifier of an instance that is suitable for external consumption.
    generationUuid String
    Generation UUID of the VM. It should be of type UUID.
    gpuses List<GetVirtualMachinesV2VmGpus>
    GPUs attached to the VM.
    guestCustomizations List<GetVirtualMachinesV2VmGuestCustomization>
    Stage a Sysprep or cloud-init configuration file to be used by the guest for the next boot. Note that the Sysprep command must be used to generalize the Windows VMs before triggering this API call.
    guestTools List<GetVirtualMachinesV2VmGuestTool>
    The details about Nutanix Guest Tools for a VM.
    hardwareClockTimezone String
    VM hardware clock timezone in IANA TZDB format (America/Los_Angeles).
    hosts List<GetVirtualMachinesV2VmHost>
    Reference to the host, the VM is running on.
    isAgentVm Boolean
    Indicates whether the VM is an agent VM or not. When their host enters maintenance mode, once the normal VMs are evacuated, the agent VMs are powered off. When the host is restored, agent VMs are powered on before the normal VMs are restored. In other words, agent VMs cannot be HA-protected or live migrated.
    isBrandingEnabled Boolean
    Indicates whether to remove AHV branding from VM firmware tables or not.
    isCpuHotplugEnabled Boolean
    Indicates whether the VM CPU hotplug is enabled.
    isCpuPassthroughEnabled Boolean
    Indicates whether to passthrough the host CPU features to the guest or not. Enabling this will make VM incapable of live migration.
    isGpuConsoleEnabled Boolean
    Indicates whether the vGPU console is enabled or not.
    isMemoryOvercommitEnabled Boolean
    Indicates whether the memory overcommit feature should be enabled for the VM or not. If enabled, parts of the VM memory may reside outside of the hypervisor physical memory. Once enabled, it should be expected that the VM may suffer performance degradation.
    isScsiControllerEnabled Boolean
    Indicates whether the VM SCSI controller is enabled.
    isVcpuHardPinningEnabled Boolean
    Indicates whether the vCPUs should be hard pinned to specific pCPUs or not.
    isVgaConsoleEnabled Boolean
    Indicates whether the VGA console should be disabled or not.
    machineType String
    Machine type for the VM. Machine type Q35 is required for secure boot and does not support IDE disks.
    memorySizeBytes Integer
    Memory size in bytes.
    name String
    VM name.
    nics List<GetVirtualMachinesV2VmNic>
    NICs attached to the VM.
    numCoresPerSocket Integer
    Number of cores per socket.
    numNumaNodes Integer
    Number of NUMA nodes. 0 means NUMA is disabled.
    numSockets Integer
    Number of vCPU sockets.
    numThreadsPerCore Integer
    Number of threads per core
    ownershipInfos List<GetVirtualMachinesV2VmOwnershipInfo>
    Ownership information for the VM.
    powerState String
    protectionPolicyStates List<GetVirtualMachinesV2VmProtectionPolicyState>
    Status of protection policy applied to this VM.
    protectionType String
    The type of protection applied on a VM. PD_PROTECTED indicates a VM is protected using the Prism Element. RULE_PROTECTED indicates a VM protection using the Prism Central.
    serialPorts List<GetVirtualMachinesV2VmSerialPort>
    Serial ports configured on the VM.
    sources List<GetVirtualMachinesV2VmSource>
    Reference to an entity that the VM should be cloned or created from
    storageConfigs List<GetVirtualMachinesV2VmStorageConfig>
    Storage configuration for VM.
    updateTime String
    VM last updated time.
    vtpmConfigs List<GetVirtualMachinesV2VmVtpmConfig>
    Indicates how the vTPM for the VM should be configured.
    apcConfigs GetVirtualMachinesV2VmApcConfig[]
    Advanced Processor Compatibility configuration for the VM. Enabling this retains the CPU model for the VM across power cycles and migrations.
    availabilityZones GetVirtualMachinesV2VmAvailabilityZone[]
    biosUuid string
    BIOS UUID of the VM. It should be of type UUID.
    bootConfigs GetVirtualMachinesV2VmBootConfig[]
    Indicates the order of device types in which the VM should try to boot from. If the boot device order is not provided the system will decide an appropriate boot device order.
    categories GetVirtualMachinesV2VmCategory[]
    Categories for the VM.
    cdRoms GetVirtualMachinesV2VmCdRom[]
    CD-ROMs attached to the VM.
    clusters GetVirtualMachinesV2VmCluster[]
    Reference to a cluster.
    createTime string
    VM creation time
    description string
    VM description
    disks GetVirtualMachinesV2VmDisk[]
    Disks attached to the VM.
    enabledCpuFeatures string[]
    The list of additional CPU features to be enabled. HardwareVirtualization: Indicates whether hardware assisted virtualization should be enabled for the Guest OS or not. Once enabled, the Guest OS can deploy a nested hypervisor
    extId string
    A globally unique identifier of an instance that is suitable for external consumption.
    generationUuid string
    Generation UUID of the VM. It should be of type UUID.
    gpuses GetVirtualMachinesV2VmGpus[]
    GPUs attached to the VM.
    guestCustomizations GetVirtualMachinesV2VmGuestCustomization[]
    Stage a Sysprep or cloud-init configuration file to be used by the guest for the next boot. Note that the Sysprep command must be used to generalize the Windows VMs before triggering this API call.
    guestTools GetVirtualMachinesV2VmGuestTool[]
    The details about Nutanix Guest Tools for a VM.
    hardwareClockTimezone string
    VM hardware clock timezone in IANA TZDB format (America/Los_Angeles).
    hosts GetVirtualMachinesV2VmHost[]
    Reference to the host, the VM is running on.
    isAgentVm boolean
    Indicates whether the VM is an agent VM or not. When their host enters maintenance mode, once the normal VMs are evacuated, the agent VMs are powered off. When the host is restored, agent VMs are powered on before the normal VMs are restored. In other words, agent VMs cannot be HA-protected or live migrated.
    isBrandingEnabled boolean
    Indicates whether to remove AHV branding from VM firmware tables or not.
    isCpuHotplugEnabled boolean
    Indicates whether the VM CPU hotplug is enabled.
    isCpuPassthroughEnabled boolean
    Indicates whether to passthrough the host CPU features to the guest or not. Enabling this will make VM incapable of live migration.
    isGpuConsoleEnabled boolean
    Indicates whether the vGPU console is enabled or not.
    isMemoryOvercommitEnabled boolean
    Indicates whether the memory overcommit feature should be enabled for the VM or not. If enabled, parts of the VM memory may reside outside of the hypervisor physical memory. Once enabled, it should be expected that the VM may suffer performance degradation.
    isScsiControllerEnabled boolean
    Indicates whether the VM SCSI controller is enabled.
    isVcpuHardPinningEnabled boolean
    Indicates whether the vCPUs should be hard pinned to specific pCPUs or not.
    isVgaConsoleEnabled boolean
    Indicates whether the VGA console should be disabled or not.
    machineType string
    Machine type for the VM. Machine type Q35 is required for secure boot and does not support IDE disks.
    memorySizeBytes number
    Memory size in bytes.
    name string
    VM name.
    nics GetVirtualMachinesV2VmNic[]
    NICs attached to the VM.
    numCoresPerSocket number
    Number of cores per socket.
    numNumaNodes number
    Number of NUMA nodes. 0 means NUMA is disabled.
    numSockets number
    Number of vCPU sockets.
    numThreadsPerCore number
    Number of threads per core
    ownershipInfos GetVirtualMachinesV2VmOwnershipInfo[]
    Ownership information for the VM.
    powerState string
    protectionPolicyStates GetVirtualMachinesV2VmProtectionPolicyState[]
    Status of protection policy applied to this VM.
    protectionType string
    The type of protection applied on a VM. PD_PROTECTED indicates a VM is protected using the Prism Element. RULE_PROTECTED indicates a VM protection using the Prism Central.
    serialPorts GetVirtualMachinesV2VmSerialPort[]
    Serial ports configured on the VM.
    sources GetVirtualMachinesV2VmSource[]
    Reference to an entity that the VM should be cloned or created from
    storageConfigs GetVirtualMachinesV2VmStorageConfig[]
    Storage configuration for VM.
    updateTime string
    VM last updated time.
    vtpmConfigs GetVirtualMachinesV2VmVtpmConfig[]
    Indicates how the vTPM for the VM should be configured.
    apc_configs Sequence[GetVirtualMachinesV2VmApcConfig]
    Advanced Processor Compatibility configuration for the VM. Enabling this retains the CPU model for the VM across power cycles and migrations.
    availability_zones Sequence[GetVirtualMachinesV2VmAvailabilityZone]
    bios_uuid str
    BIOS UUID of the VM. It should be of type UUID.
    boot_configs Sequence[GetVirtualMachinesV2VmBootConfig]
    Indicates the order of device types in which the VM should try to boot from. If the boot device order is not provided the system will decide an appropriate boot device order.
    categories Sequence[GetVirtualMachinesV2VmCategory]
    Categories for the VM.
    cd_roms Sequence[GetVirtualMachinesV2VmCdRom]
    CD-ROMs attached to the VM.
    clusters Sequence[GetVirtualMachinesV2VmCluster]
    Reference to a cluster.
    create_time str
    VM creation time
    description str
    VM description
    disks Sequence[GetVirtualMachinesV2VmDisk]
    Disks attached to the VM.
    enabled_cpu_features Sequence[str]
    The list of additional CPU features to be enabled. HardwareVirtualization: Indicates whether hardware assisted virtualization should be enabled for the Guest OS or not. Once enabled, the Guest OS can deploy a nested hypervisor
    ext_id str
    A globally unique identifier of an instance that is suitable for external consumption.
    generation_uuid str
    Generation UUID of the VM. It should be of type UUID.
    gpuses Sequence[GetVirtualMachinesV2VmGpus]
    GPUs attached to the VM.
    guest_customizations Sequence[GetVirtualMachinesV2VmGuestCustomization]
    Stage a Sysprep or cloud-init configuration file to be used by the guest for the next boot. Note that the Sysprep command must be used to generalize the Windows VMs before triggering this API call.
    guest_tools Sequence[GetVirtualMachinesV2VmGuestTool]
    The details about Nutanix Guest Tools for a VM.
    hardware_clock_timezone str
    VM hardware clock timezone in IANA TZDB format (America/Los_Angeles).
    hosts Sequence[GetVirtualMachinesV2VmHost]
    Reference to the host, the VM is running on.
    is_agent_vm bool
    Indicates whether the VM is an agent VM or not. When their host enters maintenance mode, once the normal VMs are evacuated, the agent VMs are powered off. When the host is restored, agent VMs are powered on before the normal VMs are restored. In other words, agent VMs cannot be HA-protected or live migrated.
    is_branding_enabled bool
    Indicates whether to remove AHV branding from VM firmware tables or not.
    is_cpu_hotplug_enabled bool
    Indicates whether the VM CPU hotplug is enabled.
    is_cpu_passthrough_enabled bool
    Indicates whether to passthrough the host CPU features to the guest or not. Enabling this will make VM incapable of live migration.
    is_gpu_console_enabled bool
    Indicates whether the vGPU console is enabled or not.
    is_memory_overcommit_enabled bool
    Indicates whether the memory overcommit feature should be enabled for the VM or not. If enabled, parts of the VM memory may reside outside of the hypervisor physical memory. Once enabled, it should be expected that the VM may suffer performance degradation.
    is_scsi_controller_enabled bool
    Indicates whether the VM SCSI controller is enabled.
    is_vcpu_hard_pinning_enabled bool
    Indicates whether the vCPUs should be hard pinned to specific pCPUs or not.
    is_vga_console_enabled bool
    Indicates whether the VGA console should be disabled or not.
    machine_type str
    Machine type for the VM. Machine type Q35 is required for secure boot and does not support IDE disks.
    memory_size_bytes int
    Memory size in bytes.
    name str
    VM name.
    nics Sequence[GetVirtualMachinesV2VmNic]
    NICs attached to the VM.
    num_cores_per_socket int
    Number of cores per socket.
    num_numa_nodes int
    Number of NUMA nodes. 0 means NUMA is disabled.
    num_sockets int
    Number of vCPU sockets.
    num_threads_per_core int
    Number of threads per core
    ownership_infos Sequence[GetVirtualMachinesV2VmOwnershipInfo]
    Ownership information for the VM.
    power_state str
    protection_policy_states Sequence[GetVirtualMachinesV2VmProtectionPolicyState]
    Status of protection policy applied to this VM.
    protection_type str
    The type of protection applied on a VM. PD_PROTECTED indicates a VM is protected using the Prism Element. RULE_PROTECTED indicates a VM protection using the Prism Central.
    serial_ports Sequence[GetVirtualMachinesV2VmSerialPort]
    Serial ports configured on the VM.
    sources Sequence[GetVirtualMachinesV2VmSource]
    Reference to an entity that the VM should be cloned or created from
    storage_configs Sequence[GetVirtualMachinesV2VmStorageConfig]
    Storage configuration for VM.
    update_time str
    VM last updated time.
    vtpm_configs Sequence[GetVirtualMachinesV2VmVtpmConfig]
    Indicates how the vTPM for the VM should be configured.
    apcConfigs List<Property Map>
    Advanced Processor Compatibility configuration for the VM. Enabling this retains the CPU model for the VM across power cycles and migrations.
    availabilityZones List<Property Map>
    biosUuid String
    BIOS UUID of the VM. It should be of type UUID.
    bootConfigs List<Property Map>
    Indicates the order of device types in which the VM should try to boot from. If the boot device order is not provided the system will decide an appropriate boot device order.
    categories List<Property Map>
    Categories for the VM.
    cdRoms List<Property Map>
    CD-ROMs attached to the VM.
    clusters List<Property Map>
    Reference to a cluster.
    createTime String
    VM creation time
    description String
    VM description
    disks List<Property Map>
    Disks attached to the VM.
    enabledCpuFeatures List<String>
    The list of additional CPU features to be enabled. HardwareVirtualization: Indicates whether hardware assisted virtualization should be enabled for the Guest OS or not. Once enabled, the Guest OS can deploy a nested hypervisor
    extId String
    A globally unique identifier of an instance that is suitable for external consumption.
    generationUuid String
    Generation UUID of the VM. It should be of type UUID.
    gpuses List<Property Map>
    GPUs attached to the VM.
    guestCustomizations List<Property Map>
    Stage a Sysprep or cloud-init configuration file to be used by the guest for the next boot. Note that the Sysprep command must be used to generalize the Windows VMs before triggering this API call.
    guestTools List<Property Map>
    The details about Nutanix Guest Tools for a VM.
    hardwareClockTimezone String
    VM hardware clock timezone in IANA TZDB format (America/Los_Angeles).
    hosts List<Property Map>
    Reference to the host, the VM is running on.
    isAgentVm Boolean
    Indicates whether the VM is an agent VM or not. When their host enters maintenance mode, once the normal VMs are evacuated, the agent VMs are powered off. When the host is restored, agent VMs are powered on before the normal VMs are restored. In other words, agent VMs cannot be HA-protected or live migrated.
    isBrandingEnabled Boolean
    Indicates whether to remove AHV branding from VM firmware tables or not.
    isCpuHotplugEnabled Boolean
    Indicates whether the VM CPU hotplug is enabled.
    isCpuPassthroughEnabled Boolean
    Indicates whether to passthrough the host CPU features to the guest or not. Enabling this will make VM incapable of live migration.
    isGpuConsoleEnabled Boolean
    Indicates whether the vGPU console is enabled or not.
    isMemoryOvercommitEnabled Boolean
    Indicates whether the memory overcommit feature should be enabled for the VM or not. If enabled, parts of the VM memory may reside outside of the hypervisor physical memory. Once enabled, it should be expected that the VM may suffer performance degradation.
    isScsiControllerEnabled Boolean
    Indicates whether the VM SCSI controller is enabled.
    isVcpuHardPinningEnabled Boolean
    Indicates whether the vCPUs should be hard pinned to specific pCPUs or not.
    isVgaConsoleEnabled Boolean
    Indicates whether the VGA console should be disabled or not.
    machineType String
    Machine type for the VM. Machine type Q35 is required for secure boot and does not support IDE disks.
    memorySizeBytes Number
    Memory size in bytes.
    name String
    VM name.
    nics List<Property Map>
    NICs attached to the VM.
    numCoresPerSocket Number
    Number of cores per socket.
    numNumaNodes Number
    Number of NUMA nodes. 0 means NUMA is disabled.
    numSockets Number
    Number of vCPU sockets.
    numThreadsPerCore Number
    Number of threads per core
    ownershipInfos List<Property Map>
    Ownership information for the VM.
    powerState String
    protectionPolicyStates List<Property Map>
    Status of protection policy applied to this VM.
    protectionType String
    The type of protection applied on a VM. PD_PROTECTED indicates a VM is protected using the Prism Element. RULE_PROTECTED indicates a VM protection using the Prism Central.
    serialPorts List<Property Map>
    Serial ports configured on the VM.
    sources List<Property Map>
    Reference to an entity that the VM should be cloned or created from
    storageConfigs List<Property Map>
    Storage configuration for VM.
    updateTime String
    VM last updated time.
    vtpmConfigs List<Property Map>
    Indicates how the vTPM for the VM should be configured.

    GetVirtualMachinesV2VmApcConfig

    GetVirtualMachinesV2VmApcConfigCpuModel

    ExtId string
    A globally unique identifier of an instance that is suitable for external consumption.
    Name string
    VM name.
    ExtId string
    A globally unique identifier of an instance that is suitable for external consumption.
    Name string
    VM name.
    extId String
    A globally unique identifier of an instance that is suitable for external consumption.
    name String
    VM name.
    extId string
    A globally unique identifier of an instance that is suitable for external consumption.
    name string
    VM name.
    ext_id str
    A globally unique identifier of an instance that is suitable for external consumption.
    name str
    VM name.
    extId String
    A globally unique identifier of an instance that is suitable for external consumption.
    name String
    VM name.

    GetVirtualMachinesV2VmAvailabilityZone

    ExtId string
    A globally unique identifier of an instance that is suitable for external consumption.
    ExtId string
    A globally unique identifier of an instance that is suitable for external consumption.
    extId String
    A globally unique identifier of an instance that is suitable for external consumption.
    extId string
    A globally unique identifier of an instance that is suitable for external consumption.
    ext_id str
    A globally unique identifier of an instance that is suitable for external consumption.
    extId String
    A globally unique identifier of an instance that is suitable for external consumption.

    GetVirtualMachinesV2VmBootConfig

    GetVirtualMachinesV2VmBootConfigLegacyBoot

    GetVirtualMachinesV2VmBootConfigLegacyBootBootDevice

    GetVirtualMachinesV2VmBootConfigLegacyBootBootDeviceBootDeviceDisk

    GetVirtualMachinesV2VmBootConfigLegacyBootBootDeviceBootDeviceDiskDiskAddress

    BusType string
    Index int
    BusType string
    Index int
    busType String
    index Integer
    busType string
    index number
    busType String
    index Number

    GetVirtualMachinesV2VmBootConfigLegacyBootBootDeviceBootDeviceNic

    MacAddress string
    MacAddress string
    macAddress String
    macAddress string
    macAddress String

    GetVirtualMachinesV2VmBootConfigUefiBoot

    GetVirtualMachinesV2VmBootConfigUefiBootNvramDevice

    GetVirtualMachinesV2VmBootConfigUefiBootNvramDeviceBackingStorageInfo

    GetVirtualMachinesV2VmBootConfigUefiBootNvramDeviceBackingStorageInfoDataSource

    GetVirtualMachinesV2VmBootConfigUefiBootNvramDeviceBackingStorageInfoDataSourceReference

    GetVirtualMachinesV2VmBootConfigUefiBootNvramDeviceBackingStorageInfoDataSourceReferenceImageReference

    ImageExtId string
    ImageExtId string
    imageExtId String
    imageExtId string
    imageExtId String

    GetVirtualMachinesV2VmBootConfigUefiBootNvramDeviceBackingStorageInfoDataSourceReferenceVmDiskReference

    GetVirtualMachinesV2VmBootConfigUefiBootNvramDeviceBackingStorageInfoDataSourceReferenceVmDiskReferenceDiskAddress

    BusType string
    Index int
    BusType string
    Index int
    busType String
    index Integer
    busType string
    index number
    busType String
    index Number

    GetVirtualMachinesV2VmBootConfigUefiBootNvramDeviceBackingStorageInfoDataSourceReferenceVmDiskReferenceVmReference

    ExtId string
    A globally unique identifier of an instance that is suitable for external consumption.
    ExtId string
    A globally unique identifier of an instance that is suitable for external consumption.
    extId String
    A globally unique identifier of an instance that is suitable for external consumption.
    extId string
    A globally unique identifier of an instance that is suitable for external consumption.
    ext_id str
    A globally unique identifier of an instance that is suitable for external consumption.
    extId String
    A globally unique identifier of an instance that is suitable for external consumption.

    GetVirtualMachinesV2VmBootConfigUefiBootNvramDeviceBackingStorageInfoStorageConfig

    GetVirtualMachinesV2VmBootConfigUefiBootNvramDeviceBackingStorageInfoStorageContainer

    ExtId string
    A globally unique identifier of an instance that is suitable for external consumption.
    ExtId string
    A globally unique identifier of an instance that is suitable for external consumption.
    extId String
    A globally unique identifier of an instance that is suitable for external consumption.
    extId string
    A globally unique identifier of an instance that is suitable for external consumption.
    ext_id str
    A globally unique identifier of an instance that is suitable for external consumption.
    extId String
    A globally unique identifier of an instance that is suitable for external consumption.

    GetVirtualMachinesV2VmCategory

    ExtId string
    A globally unique identifier of an instance that is suitable for external consumption.
    ExtId string
    A globally unique identifier of an instance that is suitable for external consumption.
    extId String
    A globally unique identifier of an instance that is suitable for external consumption.
    extId string
    A globally unique identifier of an instance that is suitable for external consumption.
    ext_id str
    A globally unique identifier of an instance that is suitable for external consumption.
    extId String
    A globally unique identifier of an instance that is suitable for external consumption.

    GetVirtualMachinesV2VmCdRom

    BackingInfos []GetVirtualMachinesV2VmCdRomBackingInfo
    DiskAddresses []GetVirtualMachinesV2VmCdRomDiskAddress
    ExtId string
    A globally unique identifier of an instance that is suitable for external consumption.
    IsoType string
    backingInfos List<GetVirtualMachinesV2VmCdRomBackingInfo>
    diskAddresses List<GetVirtualMachinesV2VmCdRomDiskAddress>
    extId String
    A globally unique identifier of an instance that is suitable for external consumption.
    isoType String
    backingInfos GetVirtualMachinesV2VmCdRomBackingInfo[]
    diskAddresses GetVirtualMachinesV2VmCdRomDiskAddress[]
    extId string
    A globally unique identifier of an instance that is suitable for external consumption.
    isoType string
    backing_infos Sequence[GetVirtualMachinesV2VmCdRomBackingInfo]
    disk_addresses Sequence[GetVirtualMachinesV2VmCdRomDiskAddress]
    ext_id str
    A globally unique identifier of an instance that is suitable for external consumption.
    iso_type str
    backingInfos List<Property Map>
    diskAddresses List<Property Map>
    extId String
    A globally unique identifier of an instance that is suitable for external consumption.
    isoType String

    GetVirtualMachinesV2VmCdRomBackingInfo

    GetVirtualMachinesV2VmCdRomBackingInfoDataSource

    GetVirtualMachinesV2VmCdRomBackingInfoDataSourceReference

    GetVirtualMachinesV2VmCdRomBackingInfoDataSourceReferenceImageReference

    ImageExtId string
    ImageExtId string
    imageExtId String
    imageExtId string
    imageExtId String

    GetVirtualMachinesV2VmCdRomBackingInfoDataSourceReferenceVmDiskReference

    GetVirtualMachinesV2VmCdRomBackingInfoDataSourceReferenceVmDiskReferenceDiskAddress

    BusType string
    Index int
    BusType string
    Index int
    busType String
    index Integer
    busType string
    index number
    busType String
    index Number

    GetVirtualMachinesV2VmCdRomBackingInfoDataSourceReferenceVmDiskReferenceVmReference

    ExtId string
    A globally unique identifier of an instance that is suitable for external consumption.
    ExtId string
    A globally unique identifier of an instance that is suitable for external consumption.
    extId String
    A globally unique identifier of an instance that is suitable for external consumption.
    extId string
    A globally unique identifier of an instance that is suitable for external consumption.
    ext_id str
    A globally unique identifier of an instance that is suitable for external consumption.
    extId String
    A globally unique identifier of an instance that is suitable for external consumption.

    GetVirtualMachinesV2VmCdRomBackingInfoStorageConfig

    GetVirtualMachinesV2VmCdRomBackingInfoStorageContainer

    ExtId string
    A globally unique identifier of an instance that is suitable for external consumption.
    ExtId string
    A globally unique identifier of an instance that is suitable for external consumption.
    extId String
    A globally unique identifier of an instance that is suitable for external consumption.
    extId string
    A globally unique identifier of an instance that is suitable for external consumption.
    ext_id str
    A globally unique identifier of an instance that is suitable for external consumption.
    extId String
    A globally unique identifier of an instance that is suitable for external consumption.

    GetVirtualMachinesV2VmCdRomDiskAddress

    BusType string
    Index int
    BusType string
    Index int
    busType String
    index Integer
    busType string
    index number
    busType String
    index Number

    GetVirtualMachinesV2VmCluster

    ExtId string
    A globally unique identifier of an instance that is suitable for external consumption.
    ExtId string
    A globally unique identifier of an instance that is suitable for external consumption.
    extId String
    A globally unique identifier of an instance that is suitable for external consumption.
    extId string
    A globally unique identifier of an instance that is suitable for external consumption.
    ext_id str
    A globally unique identifier of an instance that is suitable for external consumption.
    extId String
    A globally unique identifier of an instance that is suitable for external consumption.

    GetVirtualMachinesV2VmDisk

    BackingInfos []GetVirtualMachinesV2VmDiskBackingInfo
    DiskAddresses []GetVirtualMachinesV2VmDiskDiskAddress
    ExtId string
    A globally unique identifier of an instance that is suitable for external consumption.
    backingInfos List<GetVirtualMachinesV2VmDiskBackingInfo>
    diskAddresses List<GetVirtualMachinesV2VmDiskDiskAddress>
    extId String
    A globally unique identifier of an instance that is suitable for external consumption.
    backingInfos GetVirtualMachinesV2VmDiskBackingInfo[]
    diskAddresses GetVirtualMachinesV2VmDiskDiskAddress[]
    extId string
    A globally unique identifier of an instance that is suitable for external consumption.
    backing_infos Sequence[GetVirtualMachinesV2VmDiskBackingInfo]
    disk_addresses Sequence[GetVirtualMachinesV2VmDiskDiskAddress]
    ext_id str
    A globally unique identifier of an instance that is suitable for external consumption.
    backingInfos List<Property Map>
    diskAddresses List<Property Map>
    extId String
    A globally unique identifier of an instance that is suitable for external consumption.

    GetVirtualMachinesV2VmDiskBackingInfo

    GetVirtualMachinesV2VmDiskBackingInfoAdfsVolumeGroupReference

    GetVirtualMachinesV2VmDiskBackingInfoVmDisk

    GetVirtualMachinesV2VmDiskBackingInfoVmDiskDataSource

    GetVirtualMachinesV2VmDiskBackingInfoVmDiskDataSourceReference

    GetVirtualMachinesV2VmDiskBackingInfoVmDiskDataSourceReferenceImageReference

    ImageExtId string
    ImageExtId string
    imageExtId String
    imageExtId string
    imageExtId String

    GetVirtualMachinesV2VmDiskBackingInfoVmDiskDataSourceReferenceVmDiskReference

    GetVirtualMachinesV2VmDiskBackingInfoVmDiskDataSourceReferenceVmDiskReferenceDiskAddress

    BusType string
    Index int
    BusType string
    Index int
    busType String
    index Integer
    busType string
    index number
    busType String
    index Number

    GetVirtualMachinesV2VmDiskBackingInfoVmDiskDataSourceReferenceVmDiskReferenceVmReference

    ExtId string
    A globally unique identifier of an instance that is suitable for external consumption.
    ExtId string
    A globally unique identifier of an instance that is suitable for external consumption.
    extId String
    A globally unique identifier of an instance that is suitable for external consumption.
    extId string
    A globally unique identifier of an instance that is suitable for external consumption.
    ext_id str
    A globally unique identifier of an instance that is suitable for external consumption.
    extId String
    A globally unique identifier of an instance that is suitable for external consumption.

    GetVirtualMachinesV2VmDiskBackingInfoVmDiskStorageConfig

    GetVirtualMachinesV2VmDiskBackingInfoVmDiskStorageContainer

    ExtId string
    A globally unique identifier of an instance that is suitable for external consumption.
    ExtId string
    A globally unique identifier of an instance that is suitable for external consumption.
    extId String
    A globally unique identifier of an instance that is suitable for external consumption.
    extId string
    A globally unique identifier of an instance that is suitable for external consumption.
    ext_id str
    A globally unique identifier of an instance that is suitable for external consumption.
    extId String
    A globally unique identifier of an instance that is suitable for external consumption.

    GetVirtualMachinesV2VmDiskDiskAddress

    BusType string
    Index int
    BusType string
    Index int
    busType String
    index Integer
    busType string
    index number
    busType String
    index Number

    GetVirtualMachinesV2VmGpus

    DeviceId int
    ExtId string
    A globally unique identifier of an instance that is suitable for external consumption.
    Fraction int
    FrameBufferSizeBytes int
    GuestDriverVersion string
    Mode string
    Name string
    VM name.
    NumVirtualDisplayHeads int
    PciAddresses List<PiersKarsenbarg.Nutanix.Inputs.GetVirtualMachinesV2VmGpusPciAddress>
    Vendor string
    DeviceId int
    ExtId string
    A globally unique identifier of an instance that is suitable for external consumption.
    Fraction int
    FrameBufferSizeBytes int
    GuestDriverVersion string
    Mode string
    Name string
    VM name.
    NumVirtualDisplayHeads int
    PciAddresses []GetVirtualMachinesV2VmGpusPciAddress
    Vendor string
    deviceId Integer
    extId String
    A globally unique identifier of an instance that is suitable for external consumption.
    fraction Integer
    frameBufferSizeBytes Integer
    guestDriverVersion String
    mode String
    name String
    VM name.
    numVirtualDisplayHeads Integer
    pciAddresses List<GetVirtualMachinesV2VmGpusPciAddress>
    vendor String
    deviceId number
    extId string
    A globally unique identifier of an instance that is suitable for external consumption.
    fraction number
    frameBufferSizeBytes number
    guestDriverVersion string
    mode string
    name string
    VM name.
    numVirtualDisplayHeads number
    pciAddresses GetVirtualMachinesV2VmGpusPciAddress[]
    vendor string
    device_id int
    ext_id str
    A globally unique identifier of an instance that is suitable for external consumption.
    fraction int
    frame_buffer_size_bytes int
    guest_driver_version str
    mode str
    name str
    VM name.
    num_virtual_display_heads int
    pci_addresses Sequence[GetVirtualMachinesV2VmGpusPciAddress]
    vendor str
    deviceId Number
    extId String
    A globally unique identifier of an instance that is suitable for external consumption.
    fraction Number
    frameBufferSizeBytes Number
    guestDriverVersion String
    mode String
    name String
    VM name.
    numVirtualDisplayHeads Number
    pciAddresses List<Property Map>
    vendor String

    GetVirtualMachinesV2VmGpusPciAddress

    Bus int
    Device int
    Func int
    Segment int
    Bus int
    Device int
    Func int
    Segment int
    bus Integer
    device Integer
    func Integer
    segment Integer
    bus number
    device number
    func number
    segment number
    bus int
    device int
    func int
    segment int
    bus Number
    device Number
    func Number
    segment Number

    GetVirtualMachinesV2VmGuestCustomization

    GetVirtualMachinesV2VmGuestCustomizationConfig

    GetVirtualMachinesV2VmGuestCustomizationConfigCloudInit

    GetVirtualMachinesV2VmGuestCustomizationConfigCloudInitCloudInitScript

    GetVirtualMachinesV2VmGuestCustomizationConfigCloudInitCloudInitScriptCustomKey

    GetVirtualMachinesV2VmGuestCustomizationConfigCloudInitCloudInitScriptCustomKeyKeyValuePair

    Name string
    VM name.
    Value string
    Name string
    VM name.
    Value string
    name String
    VM name.
    value String
    name string
    VM name.
    value string
    name str
    VM name.
    value str
    name String
    VM name.
    value String

    GetVirtualMachinesV2VmGuestCustomizationConfigCloudInitCloudInitScriptUserData

    Value string
    Value string
    value String
    value string
    value str
    value String

    GetVirtualMachinesV2VmGuestCustomizationConfigSysprep

    GetVirtualMachinesV2VmGuestCustomizationConfigSysprepSysprepScript

    GetVirtualMachinesV2VmGuestCustomizationConfigSysprepSysprepScriptCustomKeyValue

    GetVirtualMachinesV2VmGuestCustomizationConfigSysprepSysprepScriptCustomKeyValueKeyValuePair

    Name string
    VM name.
    Value string
    Name string
    VM name.
    Value string
    name String
    VM name.
    value String
    name string
    VM name.
    value string
    name str
    VM name.
    value str
    name String
    VM name.
    value String

    GetVirtualMachinesV2VmGuestCustomizationConfigSysprepSysprepScriptUnattendXml

    Value string
    Value string
    value String
    value string
    value str
    value String

    GetVirtualMachinesV2VmGuestTool

    GetVirtualMachinesV2VmHost

    ExtId string
    A globally unique identifier of an instance that is suitable for external consumption.
    ExtId string
    A globally unique identifier of an instance that is suitable for external consumption.
    extId String
    A globally unique identifier of an instance that is suitable for external consumption.
    extId string
    A globally unique identifier of an instance that is suitable for external consumption.
    ext_id str
    A globally unique identifier of an instance that is suitable for external consumption.
    extId String
    A globally unique identifier of an instance that is suitable for external consumption.

    GetVirtualMachinesV2VmNic

    BackingInfos []GetVirtualMachinesV2VmNicBackingInfo
    ExtId string
    A globally unique identifier of an instance that is suitable for external consumption.
    NetworkInfos []GetVirtualMachinesV2VmNicNetworkInfo
    backingInfos List<GetVirtualMachinesV2VmNicBackingInfo>
    extId String
    A globally unique identifier of an instance that is suitable for external consumption.
    networkInfos List<GetVirtualMachinesV2VmNicNetworkInfo>
    backingInfos GetVirtualMachinesV2VmNicBackingInfo[]
    extId string
    A globally unique identifier of an instance that is suitable for external consumption.
    networkInfos GetVirtualMachinesV2VmNicNetworkInfo[]
    backing_infos Sequence[GetVirtualMachinesV2VmNicBackingInfo]
    ext_id str
    A globally unique identifier of an instance that is suitable for external consumption.
    network_infos Sequence[GetVirtualMachinesV2VmNicNetworkInfo]
    backingInfos List<Property Map>
    extId String
    A globally unique identifier of an instance that is suitable for external consumption.
    networkInfos List<Property Map>

    GetVirtualMachinesV2VmNicBackingInfo

    isConnected Boolean
    macAddress String
    model String
    numQueues Integer
    isConnected boolean
    macAddress string
    model string
    numQueues number
    isConnected Boolean
    macAddress String
    model String
    numQueues Number

    GetVirtualMachinesV2VmNicNetworkInfo

    GetVirtualMachinesV2VmNicNetworkInfoIpv4Config

    GetVirtualMachinesV2VmNicNetworkInfoIpv4ConfigIpAddress

    prefixLength Integer
    value String
    prefixLength number
    value string
    prefixLength Number
    value String

    GetVirtualMachinesV2VmNicNetworkInfoIpv4ConfigSecondaryIpAddressList

    prefixLength Integer
    value String
    prefixLength number
    value string
    prefixLength Number
    value String

    GetVirtualMachinesV2VmNicNetworkInfoIpv4Info

    GetVirtualMachinesV2VmNicNetworkInfoIpv4InfoLearnedIpAddress

    prefixLength Integer
    value String
    prefixLength number
    value string
    prefixLength Number
    value String

    GetVirtualMachinesV2VmNicNetworkInfoNetworkFunctionChain

    ExtId string
    A globally unique identifier of an instance that is suitable for external consumption.
    ExtId string
    A globally unique identifier of an instance that is suitable for external consumption.
    extId String
    A globally unique identifier of an instance that is suitable for external consumption.
    extId string
    A globally unique identifier of an instance that is suitable for external consumption.
    ext_id str
    A globally unique identifier of an instance that is suitable for external consumption.
    extId String
    A globally unique identifier of an instance that is suitable for external consumption.

    GetVirtualMachinesV2VmNicNetworkInfoSubnet

    ExtId string
    A globally unique identifier of an instance that is suitable for external consumption.
    ExtId string
    A globally unique identifier of an instance that is suitable for external consumption.
    extId String
    A globally unique identifier of an instance that is suitable for external consumption.
    extId string
    A globally unique identifier of an instance that is suitable for external consumption.
    ext_id str
    A globally unique identifier of an instance that is suitable for external consumption.
    extId String
    A globally unique identifier of an instance that is suitable for external consumption.

    GetVirtualMachinesV2VmOwnershipInfo

    GetVirtualMachinesV2VmOwnershipInfoOwner

    ExtId string
    A globally unique identifier of an instance that is suitable for external consumption.
    ExtId string
    A globally unique identifier of an instance that is suitable for external consumption.
    extId String
    A globally unique identifier of an instance that is suitable for external consumption.
    extId string
    A globally unique identifier of an instance that is suitable for external consumption.
    ext_id str
    A globally unique identifier of an instance that is suitable for external consumption.
    extId String
    A globally unique identifier of an instance that is suitable for external consumption.

    GetVirtualMachinesV2VmProtectionPolicyState

    GetVirtualMachinesV2VmProtectionPolicyStatePolicy

    ExtId string
    A globally unique identifier of an instance that is suitable for external consumption.
    ExtId string
    A globally unique identifier of an instance that is suitable for external consumption.
    extId String
    A globally unique identifier of an instance that is suitable for external consumption.
    extId string
    A globally unique identifier of an instance that is suitable for external consumption.
    ext_id str
    A globally unique identifier of an instance that is suitable for external consumption.
    extId String
    A globally unique identifier of an instance that is suitable for external consumption.

    GetVirtualMachinesV2VmSerialPort

    ExtId string
    A globally unique identifier of an instance that is suitable for external consumption.
    Index int
    IsConnected bool
    ExtId string
    A globally unique identifier of an instance that is suitable for external consumption.
    Index int
    IsConnected bool
    extId String
    A globally unique identifier of an instance that is suitable for external consumption.
    index Integer
    isConnected Boolean
    extId string
    A globally unique identifier of an instance that is suitable for external consumption.
    index number
    isConnected boolean
    ext_id str
    A globally unique identifier of an instance that is suitable for external consumption.
    index int
    is_connected bool
    extId String
    A globally unique identifier of an instance that is suitable for external consumption.
    index Number
    isConnected Boolean

    GetVirtualMachinesV2VmSource

    EntityType string
    ExtId string
    A globally unique identifier of an instance that is suitable for external consumption.
    EntityType string
    ExtId string
    A globally unique identifier of an instance that is suitable for external consumption.
    entityType String
    extId String
    A globally unique identifier of an instance that is suitable for external consumption.
    entityType string
    extId string
    A globally unique identifier of an instance that is suitable for external consumption.
    entity_type str
    ext_id str
    A globally unique identifier of an instance that is suitable for external consumption.
    entityType String
    extId String
    A globally unique identifier of an instance that is suitable for external consumption.

    GetVirtualMachinesV2VmStorageConfig

    GetVirtualMachinesV2VmStorageConfigQosConfig

    GetVirtualMachinesV2VmVtpmConfig

    isVtpmEnabled Boolean
    version String
    isVtpmEnabled boolean
    version string
    isVtpmEnabled Boolean
    version String

    Package Details

    Repository
    nutanix pierskarsenbarg/pulumi-nutanix
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the nutanix Terraform Provider.
    nutanix logo
    Nutanix v0.7.4 published on Friday, Mar 21, 2025 by Piers Karsenbarg