Nutanix v0.7.4 published on Friday, Mar 21, 2025 by Piers Karsenbarg
nutanix.getVirtualMachinesV2
Explore with Pulumi AI
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.
- Order
By 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.
- Order
By 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.
- order
By 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.
- order
By 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.
- order
By 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<Piers
Karsenbarg. Nutanix. Outputs. Get Virtual Machines V2Vm> - 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.
- Order
By 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
[]Get
Virtual Machines V2Vm - 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.
- Order
By 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<Get
Virtual Machines V2Vm> - 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.
- order
By 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
Get
Virtual Machines V2Vm[] - 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.
- order
By 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[Get
Virtual Machines V2Vm] - 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.
- order
By 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
- Apc
Configs List<PiersKarsenbarg. Nutanix. Inputs. Get Virtual Machines V2Vm Apc Config> - Advanced Processor Compatibility configuration for the VM. Enabling this retains the CPU model for the VM across power cycles and migrations.
- Availability
Zones List<PiersKarsenbarg. Nutanix. Inputs. Get Virtual Machines V2Vm Availability Zone> - Bios
Uuid string - BIOS UUID of the VM. It should be of type UUID.
- Boot
Configs List<PiersKarsenbarg. Nutanix. Inputs. Get Virtual Machines V2Vm Boot Config> - 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<Piers
Karsenbarg. Nutanix. Inputs. Get Virtual Machines V2Vm Category> - Categories for the VM.
- Cd
Roms List<PiersKarsenbarg. Nutanix. Inputs. Get Virtual Machines V2Vm Cd Rom> - CD-ROMs attached to the VM.
- Clusters
List<Piers
Karsenbarg. Nutanix. Inputs. Get Virtual Machines V2Vm Cluster> - Reference to a cluster.
- Create
Time string - VM creation time
- Description string
- VM description
- Disks
List<Piers
Karsenbarg. Nutanix. Inputs. Get Virtual Machines V2Vm Disk> - Disks attached to the VM.
- Enabled
Cpu List<string>Features - 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 string - A globally unique identifier of an instance that is suitable for external consumption.
- Generation
Uuid string - Generation UUID of the VM. It should be of type UUID.
- Gpuses
List<Piers
Karsenbarg. Nutanix. Inputs. Get Virtual Machines V2Vm Gpus> - GPUs attached to the VM.
- Guest
Customizations List<PiersKarsenbarg. Nutanix. Inputs. Get Virtual Machines V2Vm Guest Customization> - 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 List<PiersKarsenbarg. Nutanix. Inputs. Get Virtual Machines V2Vm Guest Tool> - The details about Nutanix Guest Tools for a VM.
- Hardware
Clock stringTimezone - VM hardware clock timezone in IANA TZDB format (America/Los_Angeles).
- Hosts
List<Piers
Karsenbarg. Nutanix. Inputs. Get Virtual Machines V2Vm Host> - Reference to the host, the VM is running on.
- Is
Agent boolVm - 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 boolEnabled - Indicates whether to remove AHV branding from VM firmware tables or not.
- Is
Cpu boolHotplug Enabled - Indicates whether the VM CPU hotplug is enabled.
- Is
Cpu boolPassthrough Enabled - Indicates whether to passthrough the host CPU features to the guest or not. Enabling this will make VM incapable of live migration.
- Is
Gpu boolConsole Enabled - Indicates whether the vGPU console is enabled or not.
- Is
Memory boolOvercommit Enabled - 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 boolController Enabled - Indicates whether the VM SCSI controller is enabled.
- Is
Vcpu boolHard Pinning Enabled - Indicates whether the vCPUs should be hard pinned to specific pCPUs or not.
- Is
Vga boolConsole Enabled - Indicates whether the VGA console should be disabled or not.
- Machine
Type string - Machine type for the VM. Machine type Q35 is required for secure boot and does not support IDE disks.
- Memory
Size intBytes - Memory size in bytes.
- Name string
- VM name.
- Nics
List<Piers
Karsenbarg. Nutanix. Inputs. Get Virtual Machines V2Vm Nic> - NICs attached to the VM.
- Num
Cores intPer Socket - Number of cores per socket.
- Num
Numa intNodes - Number of NUMA nodes. 0 means NUMA is disabled.
- Num
Sockets int - Number of vCPU sockets.
- Num
Threads intPer Core - Number of threads per core
- Ownership
Infos List<PiersKarsenbarg. Nutanix. Inputs. Get Virtual Machines V2Vm Ownership Info> - Ownership information for the VM.
- Power
State string - Protection
Policy List<PiersStates Karsenbarg. Nutanix. Inputs. Get Virtual Machines V2Vm Protection Policy State> - Status of protection policy applied to this VM.
- Protection
Type 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.
- Serial
Ports List<PiersKarsenbarg. Nutanix. Inputs. Get Virtual Machines V2Vm Serial Port> - Serial ports configured on the VM.
- Sources
List<Piers
Karsenbarg. Nutanix. Inputs. Get Virtual Machines V2Vm Source> - Reference to an entity that the VM should be cloned or created from
- Storage
Configs List<PiersKarsenbarg. Nutanix. Inputs. Get Virtual Machines V2Vm Storage Config> - Storage configuration for VM.
- Update
Time string - VM last updated time.
- Vtpm
Configs List<PiersKarsenbarg. Nutanix. Inputs. Get Virtual Machines V2Vm Vtpm Config> - Indicates how the vTPM for the VM should be configured.
- Apc
Configs []GetVirtual Machines V2Vm Apc Config - Advanced Processor Compatibility configuration for the VM. Enabling this retains the CPU model for the VM across power cycles and migrations.
- Availability
Zones []GetVirtual Machines V2Vm Availability Zone - Bios
Uuid string - BIOS UUID of the VM. It should be of type UUID.
- Boot
Configs []GetVirtual Machines V2Vm Boot Config - 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
[]Get
Virtual Machines V2Vm Category - Categories for the VM.
- Cd
Roms []GetVirtual Machines V2Vm Cd Rom - CD-ROMs attached to the VM.
- Clusters
[]Get
Virtual Machines V2Vm Cluster - Reference to a cluster.
- Create
Time string - VM creation time
- Description string
- VM description
- Disks
[]Get
Virtual Machines V2Vm Disk - Disks attached to the VM.
- Enabled
Cpu []stringFeatures - 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 string - A globally unique identifier of an instance that is suitable for external consumption.
- Generation
Uuid string - Generation UUID of the VM. It should be of type UUID.
- Gpuses
[]Get
Virtual Machines V2Vm Gpus - GPUs attached to the VM.
- Guest
Customizations []GetVirtual Machines V2Vm Guest Customization - 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 []GetVirtual Machines V2Vm Guest Tool - The details about Nutanix Guest Tools for a VM.
- Hardware
Clock stringTimezone - VM hardware clock timezone in IANA TZDB format (America/Los_Angeles).
- Hosts
[]Get
Virtual Machines V2Vm Host - Reference to the host, the VM is running on.
- Is
Agent boolVm - 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 boolEnabled - Indicates whether to remove AHV branding from VM firmware tables or not.
- Is
Cpu boolHotplug Enabled - Indicates whether the VM CPU hotplug is enabled.
- Is
Cpu boolPassthrough Enabled - Indicates whether to passthrough the host CPU features to the guest or not. Enabling this will make VM incapable of live migration.
- Is
Gpu boolConsole Enabled - Indicates whether the vGPU console is enabled or not.
- Is
Memory boolOvercommit Enabled - 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 boolController Enabled - Indicates whether the VM SCSI controller is enabled.
- Is
Vcpu boolHard Pinning Enabled - Indicates whether the vCPUs should be hard pinned to specific pCPUs or not.
- Is
Vga boolConsole Enabled - Indicates whether the VGA console should be disabled or not.
- Machine
Type string - Machine type for the VM. Machine type Q35 is required for secure boot and does not support IDE disks.
- Memory
Size intBytes - Memory size in bytes.
- Name string
- VM name.
- Nics
[]Get
Virtual Machines V2Vm Nic - NICs attached to the VM.
- Num
Cores intPer Socket - Number of cores per socket.
- Num
Numa intNodes - Number of NUMA nodes. 0 means NUMA is disabled.
- Num
Sockets int - Number of vCPU sockets.
- Num
Threads intPer Core - Number of threads per core
- Ownership
Infos []GetVirtual Machines V2Vm Ownership Info - Ownership information for the VM.
- Power
State string - Protection
Policy []GetStates Virtual Machines V2Vm Protection Policy State - Status of protection policy applied to this VM.
- Protection
Type 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.
- Serial
Ports []GetVirtual Machines V2Vm Serial Port - Serial ports configured on the VM.
- Sources
[]Get
Virtual Machines V2Vm Source - Reference to an entity that the VM should be cloned or created from
- Storage
Configs []GetVirtual Machines V2Vm Storage Config - Storage configuration for VM.
- Update
Time string - VM last updated time.
- Vtpm
Configs []GetVirtual Machines V2Vm Vtpm Config - Indicates how the vTPM for the VM should be configured.
- apc
Configs List<GetVirtual Machines V2Vm Apc Config> - Advanced Processor Compatibility configuration for the VM. Enabling this retains the CPU model for the VM across power cycles and migrations.
- availability
Zones List<GetVirtual Machines V2Vm Availability Zone> - bios
Uuid String - BIOS UUID of the VM. It should be of type UUID.
- boot
Configs List<GetVirtual Machines V2Vm Boot Config> - 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<Get
Virtual Machines V2Vm Category> - Categories for the VM.
- cd
Roms List<GetVirtual Machines V2Vm Cd Rom> - CD-ROMs attached to the VM.
- clusters
List<Get
Virtual Machines V2Vm Cluster> - Reference to a cluster.
- create
Time String - VM creation time
- description String
- VM description
- disks
List<Get
Virtual Machines V2Vm Disk> - Disks attached to the VM.
- enabled
Cpu List<String>Features - 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 String - A globally unique identifier of an instance that is suitable for external consumption.
- generation
Uuid String - Generation UUID of the VM. It should be of type UUID.
- gpuses
List<Get
Virtual Machines V2Vm Gpus> - GPUs attached to the VM.
- guest
Customizations List<GetVirtual Machines V2Vm Guest Customization> - 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 List<GetVirtual Machines V2Vm Guest Tool> - The details about Nutanix Guest Tools for a VM.
- hardware
Clock StringTimezone - VM hardware clock timezone in IANA TZDB format (America/Los_Angeles).
- hosts
List<Get
Virtual Machines V2Vm Host> - Reference to the host, the VM is running on.
- is
Agent BooleanVm - 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 BooleanEnabled - Indicates whether to remove AHV branding from VM firmware tables or not.
- is
Cpu BooleanHotplug Enabled - Indicates whether the VM CPU hotplug is enabled.
- is
Cpu BooleanPassthrough Enabled - Indicates whether to passthrough the host CPU features to the guest or not. Enabling this will make VM incapable of live migration.
- is
Gpu BooleanConsole Enabled - Indicates whether the vGPU console is enabled or not.
- is
Memory BooleanOvercommit Enabled - 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 BooleanController Enabled - Indicates whether the VM SCSI controller is enabled.
- is
Vcpu BooleanHard Pinning Enabled - Indicates whether the vCPUs should be hard pinned to specific pCPUs or not.
- is
Vga BooleanConsole Enabled - Indicates whether the VGA console should be disabled or not.
- machine
Type String - Machine type for the VM. Machine type Q35 is required for secure boot and does not support IDE disks.
- memory
Size IntegerBytes - Memory size in bytes.
- name String
- VM name.
- nics
List<Get
Virtual Machines V2Vm Nic> - NICs attached to the VM.
- num
Cores IntegerPer Socket - Number of cores per socket.
- num
Numa IntegerNodes - Number of NUMA nodes. 0 means NUMA is disabled.
- num
Sockets Integer - Number of vCPU sockets.
- num
Threads IntegerPer Core - Number of threads per core
- ownership
Infos List<GetVirtual Machines V2Vm Ownership Info> - Ownership information for the VM.
- power
State String - protection
Policy List<GetStates Virtual Machines V2Vm Protection Policy State> - Status of protection policy applied to this VM.
- protection
Type 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.
- serial
Ports List<GetVirtual Machines V2Vm Serial Port> - Serial ports configured on the VM.
- sources
List<Get
Virtual Machines V2Vm Source> - Reference to an entity that the VM should be cloned or created from
- storage
Configs List<GetVirtual Machines V2Vm Storage Config> - Storage configuration for VM.
- update
Time String - VM last updated time.
- vtpm
Configs List<GetVirtual Machines V2Vm Vtpm Config> - Indicates how the vTPM for the VM should be configured.
- apc
Configs GetVirtual Machines V2Vm Apc Config[] - Advanced Processor Compatibility configuration for the VM. Enabling this retains the CPU model for the VM across power cycles and migrations.
- availability
Zones GetVirtual Machines V2Vm Availability Zone[] - bios
Uuid string - BIOS UUID of the VM. It should be of type UUID.
- boot
Configs GetVirtual Machines V2Vm Boot Config[] - 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
Get
Virtual Machines V2Vm Category[] - Categories for the VM.
- cd
Roms GetVirtual Machines V2Vm Cd Rom[] - CD-ROMs attached to the VM.
- clusters
Get
Virtual Machines V2Vm Cluster[] - Reference to a cluster.
- create
Time string - VM creation time
- description string
- VM description
- disks
Get
Virtual Machines V2Vm Disk[] - Disks attached to the VM.
- enabled
Cpu string[]Features - 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 string - A globally unique identifier of an instance that is suitable for external consumption.
- generation
Uuid string - Generation UUID of the VM. It should be of type UUID.
- gpuses
Get
Virtual Machines V2Vm Gpus[] - GPUs attached to the VM.
- guest
Customizations GetVirtual Machines V2Vm Guest Customization[] - 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 GetVirtual Machines V2Vm Guest Tool[] - The details about Nutanix Guest Tools for a VM.
- hardware
Clock stringTimezone - VM hardware clock timezone in IANA TZDB format (America/Los_Angeles).
- hosts
Get
Virtual Machines V2Vm Host[] - Reference to the host, the VM is running on.
- is
Agent booleanVm - 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 booleanEnabled - Indicates whether to remove AHV branding from VM firmware tables or not.
- is
Cpu booleanHotplug Enabled - Indicates whether the VM CPU hotplug is enabled.
- is
Cpu booleanPassthrough Enabled - Indicates whether to passthrough the host CPU features to the guest or not. Enabling this will make VM incapable of live migration.
- is
Gpu booleanConsole Enabled - Indicates whether the vGPU console is enabled or not.
- is
Memory booleanOvercommit Enabled - 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 booleanController Enabled - Indicates whether the VM SCSI controller is enabled.
- is
Vcpu booleanHard Pinning Enabled - Indicates whether the vCPUs should be hard pinned to specific pCPUs or not.
- is
Vga booleanConsole Enabled - Indicates whether the VGA console should be disabled or not.
- machine
Type string - Machine type for the VM. Machine type Q35 is required for secure boot and does not support IDE disks.
- memory
Size numberBytes - Memory size in bytes.
- name string
- VM name.
- nics
Get
Virtual Machines V2Vm Nic[] - NICs attached to the VM.
- num
Cores numberPer Socket - Number of cores per socket.
- num
Numa numberNodes - Number of NUMA nodes. 0 means NUMA is disabled.
- num
Sockets number - Number of vCPU sockets.
- num
Threads numberPer Core - Number of threads per core
- ownership
Infos GetVirtual Machines V2Vm Ownership Info[] - Ownership information for the VM.
- power
State string - protection
Policy GetStates Virtual Machines V2Vm Protection Policy State[] - Status of protection policy applied to this VM.
- protection
Type 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.
- serial
Ports GetVirtual Machines V2Vm Serial Port[] - Serial ports configured on the VM.
- sources
Get
Virtual Machines V2Vm Source[] - Reference to an entity that the VM should be cloned or created from
- storage
Configs GetVirtual Machines V2Vm Storage Config[] - Storage configuration for VM.
- update
Time string - VM last updated time.
- vtpm
Configs GetVirtual Machines V2Vm Vtpm Config[] - Indicates how the vTPM for the VM should be configured.
- apc_
configs Sequence[GetVirtual Machines V2Vm Apc Config] - Advanced Processor Compatibility configuration for the VM. Enabling this retains the CPU model for the VM across power cycles and migrations.
- availability_
zones Sequence[GetVirtual Machines V2Vm Availability Zone] - bios_
uuid str - BIOS UUID of the VM. It should be of type UUID.
- boot_
configs Sequence[GetVirtual Machines V2Vm Boot Config] - 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[Get
Virtual Machines V2Vm Category] - Categories for the VM.
- cd_
roms Sequence[GetVirtual Machines V2Vm Cd Rom] - CD-ROMs attached to the VM.
- clusters
Sequence[Get
Virtual Machines V2Vm Cluster] - Reference to a cluster.
- create_
time str - VM creation time
- description str
- VM description
- disks
Sequence[Get
Virtual Machines V2Vm Disk] - Disks attached to the VM.
- enabled_
cpu_ Sequence[str]features - 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[Get
Virtual Machines V2Vm Gpus] - GPUs attached to the VM.
- guest_
customizations Sequence[GetVirtual Machines V2Vm Guest Customization] - 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[GetVirtual Machines V2Vm Guest Tool] - The details about Nutanix Guest Tools for a VM.
- hardware_
clock_ strtimezone - VM hardware clock timezone in IANA TZDB format (America/Los_Angeles).
- hosts
Sequence[Get
Virtual Machines V2Vm Host] - Reference to the host, the VM is running on.
- is_
agent_ boolvm - 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_ boolenabled - Indicates whether to remove AHV branding from VM firmware tables or not.
- is_
cpu_ boolhotplug_ enabled - Indicates whether the VM CPU hotplug is enabled.
- is_
cpu_ boolpassthrough_ enabled - Indicates whether to passthrough the host CPU features to the guest or not. Enabling this will make VM incapable of live migration.
- is_
gpu_ boolconsole_ enabled - Indicates whether the vGPU console is enabled or not.
- is_
memory_ boolovercommit_ enabled - 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_ boolcontroller_ enabled - Indicates whether the VM SCSI controller is enabled.
- is_
vcpu_ boolhard_ pinning_ enabled - Indicates whether the vCPUs should be hard pinned to specific pCPUs or not.
- is_
vga_ boolconsole_ enabled - 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_ intbytes - Memory size in bytes.
- name str
- VM name.
- nics
Sequence[Get
Virtual Machines V2Vm Nic] - NICs attached to the VM.
- num_
cores_ intper_ socket - Number of cores per socket.
- num_
numa_ intnodes - Number of NUMA nodes. 0 means NUMA is disabled.
- num_
sockets int - Number of vCPU sockets.
- num_
threads_ intper_ core - Number of threads per core
- ownership_
infos Sequence[GetVirtual Machines V2Vm Ownership Info] - Ownership information for the VM.
- power_
state str - protection_
policy_ Sequence[Getstates Virtual Machines V2Vm Protection Policy State] - 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[GetVirtual Machines V2Vm Serial Port] - Serial ports configured on the VM.
- sources
Sequence[Get
Virtual Machines V2Vm Source] - Reference to an entity that the VM should be cloned or created from
- storage_
configs Sequence[GetVirtual Machines V2Vm Storage Config] - Storage configuration for VM.
- update_
time str - VM last updated time.
- vtpm_
configs Sequence[GetVirtual Machines V2Vm Vtpm Config] - Indicates how the vTPM for the VM should be configured.
- apc
Configs List<Property Map> - Advanced Processor Compatibility configuration for the VM. Enabling this retains the CPU model for the VM across power cycles and migrations.
- availability
Zones List<Property Map> - bios
Uuid String - BIOS UUID of the VM. It should be of type UUID.
- boot
Configs 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.
- cd
Roms List<Property Map> - CD-ROMs attached to the VM.
- clusters List<Property Map>
- Reference to a cluster.
- create
Time String - VM creation time
- description String
- VM description
- disks List<Property Map>
- Disks attached to the VM.
- enabled
Cpu List<String>Features - 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 String - A globally unique identifier of an instance that is suitable for external consumption.
- generation
Uuid String - Generation UUID of the VM. It should be of type UUID.
- gpuses List<Property Map>
- GPUs attached to the VM.
- guest
Customizations 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.
- guest
Tools List<Property Map> - The details about Nutanix Guest Tools for a VM.
- hardware
Clock StringTimezone - VM hardware clock timezone in IANA TZDB format (America/Los_Angeles).
- hosts List<Property Map>
- Reference to the host, the VM is running on.
- is
Agent BooleanVm - 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 BooleanEnabled - Indicates whether to remove AHV branding from VM firmware tables or not.
- is
Cpu BooleanHotplug Enabled - Indicates whether the VM CPU hotplug is enabled.
- is
Cpu BooleanPassthrough Enabled - Indicates whether to passthrough the host CPU features to the guest or not. Enabling this will make VM incapable of live migration.
- is
Gpu BooleanConsole Enabled - Indicates whether the vGPU console is enabled or not.
- is
Memory BooleanOvercommit Enabled - 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 BooleanController Enabled - Indicates whether the VM SCSI controller is enabled.
- is
Vcpu BooleanHard Pinning Enabled - Indicates whether the vCPUs should be hard pinned to specific pCPUs or not.
- is
Vga BooleanConsole Enabled - Indicates whether the VGA console should be disabled or not.
- machine
Type String - Machine type for the VM. Machine type Q35 is required for secure boot and does not support IDE disks.
- memory
Size NumberBytes - Memory size in bytes.
- name String
- VM name.
- nics List<Property Map>
- NICs attached to the VM.
- num
Cores NumberPer Socket - Number of cores per socket.
- num
Numa NumberNodes - Number of NUMA nodes. 0 means NUMA is disabled.
- num
Sockets Number - Number of vCPU sockets.
- num
Threads NumberPer Core - Number of threads per core
- ownership
Infos List<Property Map> - Ownership information for the VM.
- power
State String - protection
Policy List<Property Map>States - Status of protection policy applied to this VM.
- protection
Type 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.
- serial
Ports 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
- storage
Configs List<Property Map> - Storage configuration for VM.
- update
Time String - VM last updated time.
- vtpm
Configs List<Property Map> - Indicates how the vTPM for the VM should be configured.
GetVirtualMachinesV2VmApcConfig
GetVirtualMachinesV2VmApcConfigCpuModel
GetVirtualMachinesV2VmAvailabilityZone
- Ext
Id string - A globally unique identifier of an instance that is suitable for external consumption.
- Ext
Id string - A globally unique identifier of an instance that is suitable for external consumption.
- ext
Id String - A globally unique identifier of an instance that is suitable for external consumption.
- ext
Id 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.
- ext
Id String - A globally unique identifier of an instance that is suitable for external consumption.
GetVirtualMachinesV2VmBootConfig
GetVirtualMachinesV2VmBootConfigLegacyBoot
- boot
Devices List<Property Map> - boot
Orders List<String>
GetVirtualMachinesV2VmBootConfigLegacyBootBootDevice
GetVirtualMachinesV2VmBootConfigLegacyBootBootDeviceBootDeviceDisk
GetVirtualMachinesV2VmBootConfigLegacyBootBootDeviceBootDeviceDiskDiskAddress
GetVirtualMachinesV2VmBootConfigLegacyBootBootDeviceBootDeviceNic
- Mac
Address string
- Mac
Address string
- mac
Address String
- mac
Address string
- mac_
address str
- mac
Address String
GetVirtualMachinesV2VmBootConfigUefiBoot
GetVirtualMachinesV2VmBootConfigUefiBootNvramDevice
GetVirtualMachinesV2VmBootConfigUefiBootNvramDeviceBackingStorageInfo
- Data
Sources List<PiersKarsenbarg. Nutanix. Inputs. Get Virtual Machines V2Vm Boot Config Uefi Boot Nvram Device Backing Storage Info Data Source> - Disk
Ext stringId - Disk
Size intBytes - Is
Migration boolIn Progress - Storage
Configs List<PiersKarsenbarg. Nutanix. Inputs. Get Virtual Machines V2Vm Boot Config Uefi Boot Nvram Device Backing Storage Info Storage Config> - Storage configuration for VM.
- Storage
Containers List<PiersKarsenbarg. Nutanix. Inputs. Get Virtual Machines V2Vm Boot Config Uefi Boot Nvram Device Backing Storage Info Storage Container>
- Data
Sources []GetVirtual Machines V2Vm Boot Config Uefi Boot Nvram Device Backing Storage Info Data Source - Disk
Ext stringId - Disk
Size intBytes - Is
Migration boolIn Progress - Storage
Configs []GetVirtual Machines V2Vm Boot Config Uefi Boot Nvram Device Backing Storage Info Storage Config - Storage configuration for VM.
- Storage
Containers []GetVirtual Machines V2Vm Boot Config Uefi Boot Nvram Device Backing Storage Info Storage Container
- data
Sources List<GetVirtual Machines V2Vm Boot Config Uefi Boot Nvram Device Backing Storage Info Data Source> - disk
Ext StringId - disk
Size IntegerBytes - is
Migration BooleanIn Progress - storage
Configs List<GetVirtual Machines V2Vm Boot Config Uefi Boot Nvram Device Backing Storage Info Storage Config> - Storage configuration for VM.
- storage
Containers List<GetVirtual Machines V2Vm Boot Config Uefi Boot Nvram Device Backing Storage Info Storage Container>
- data
Sources GetVirtual Machines V2Vm Boot Config Uefi Boot Nvram Device Backing Storage Info Data Source[] - disk
Ext stringId - disk
Size numberBytes - is
Migration booleanIn Progress - storage
Configs GetVirtual Machines V2Vm Boot Config Uefi Boot Nvram Device Backing Storage Info Storage Config[] - Storage configuration for VM.
- storage
Containers GetVirtual Machines V2Vm Boot Config Uefi Boot Nvram Device Backing Storage Info Storage Container[]
- data_
sources Sequence[GetVirtual Machines V2Vm Boot Config Uefi Boot Nvram Device Backing Storage Info Data Source] - disk_
ext_ strid - disk_
size_ intbytes - is_
migration_ boolin_ progress - storage_
configs Sequence[GetVirtual Machines V2Vm Boot Config Uefi Boot Nvram Device Backing Storage Info Storage Config] - Storage configuration for VM.
- storage_
containers Sequence[GetVirtual Machines V2Vm Boot Config Uefi Boot Nvram Device Backing Storage Info Storage Container]
- data
Sources List<Property Map> - disk
Ext StringId - disk
Size NumberBytes - is
Migration BooleanIn Progress - storage
Configs List<Property Map> - Storage configuration for VM.
- storage
Containers List<Property Map>
GetVirtualMachinesV2VmBootConfigUefiBootNvramDeviceBackingStorageInfoDataSource
GetVirtualMachinesV2VmBootConfigUefiBootNvramDeviceBackingStorageInfoDataSourceReference
- Image
References List<PiersKarsenbarg. Nutanix. Inputs. Get Virtual Machines V2Vm Boot Config Uefi Boot Nvram Device Backing Storage Info Data Source Reference Image Reference> - Vm
Disk List<PiersReferences Karsenbarg. Nutanix. Inputs. Get Virtual Machines V2Vm Boot Config Uefi Boot Nvram Device Backing Storage Info Data Source Reference Vm Disk Reference>
GetVirtualMachinesV2VmBootConfigUefiBootNvramDeviceBackingStorageInfoDataSourceReferenceImageReference
- Image
Ext stringId
- Image
Ext stringId
- image
Ext StringId
- image
Ext stringId
- image_
ext_ strid
- image
Ext StringId
GetVirtualMachinesV2VmBootConfigUefiBootNvramDeviceBackingStorageInfoDataSourceReferenceVmDiskReference
- Disk
Addresses List<PiersKarsenbarg. Nutanix. Inputs. Get Virtual Machines V2Vm Boot Config Uefi Boot Nvram Device Backing Storage Info Data Source Reference Vm Disk Reference Disk Address> - Disk
Ext stringId - Vm
References List<PiersKarsenbarg. Nutanix. Inputs. Get Virtual Machines V2Vm Boot Config Uefi Boot Nvram Device Backing Storage Info Data Source Reference Vm Disk Reference Vm Reference>
GetVirtualMachinesV2VmBootConfigUefiBootNvramDeviceBackingStorageInfoDataSourceReferenceVmDiskReferenceDiskAddress
GetVirtualMachinesV2VmBootConfigUefiBootNvramDeviceBackingStorageInfoDataSourceReferenceVmDiskReferenceVmReference
- Ext
Id string - A globally unique identifier of an instance that is suitable for external consumption.
- Ext
Id string - A globally unique identifier of an instance that is suitable for external consumption.
- ext
Id String - A globally unique identifier of an instance that is suitable for external consumption.
- ext
Id 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.
- ext
Id String - A globally unique identifier of an instance that is suitable for external consumption.
GetVirtualMachinesV2VmBootConfigUefiBootNvramDeviceBackingStorageInfoStorageConfig
- Is
Flash boolMode Enabled
- Is
Flash boolMode Enabled
- is
Flash BooleanMode Enabled
- is
Flash booleanMode Enabled
- is
Flash BooleanMode Enabled
GetVirtualMachinesV2VmBootConfigUefiBootNvramDeviceBackingStorageInfoStorageContainer
- Ext
Id string - A globally unique identifier of an instance that is suitable for external consumption.
- Ext
Id string - A globally unique identifier of an instance that is suitable for external consumption.
- ext
Id String - A globally unique identifier of an instance that is suitable for external consumption.
- ext
Id 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.
- ext
Id String - A globally unique identifier of an instance that is suitable for external consumption.
GetVirtualMachinesV2VmCategory
- Ext
Id string - A globally unique identifier of an instance that is suitable for external consumption.
- Ext
Id string - A globally unique identifier of an instance that is suitable for external consumption.
- ext
Id String - A globally unique identifier of an instance that is suitable for external consumption.
- ext
Id 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.
- ext
Id String - A globally unique identifier of an instance that is suitable for external consumption.
GetVirtualMachinesV2VmCdRom
- Backing
Infos List<PiersKarsenbarg. Nutanix. Inputs. Get Virtual Machines V2Vm Cd Rom Backing Info> - Disk
Addresses List<PiersKarsenbarg. Nutanix. Inputs. Get Virtual Machines V2Vm Cd Rom Disk Address> - Ext
Id string - A globally unique identifier of an instance that is suitable for external consumption.
- Iso
Type string
- Backing
Infos []GetVirtual Machines V2Vm Cd Rom Backing Info - Disk
Addresses []GetVirtual Machines V2Vm Cd Rom Disk Address - Ext
Id string - A globally unique identifier of an instance that is suitable for external consumption.
- Iso
Type string
- backing
Infos List<GetVirtual Machines V2Vm Cd Rom Backing Info> - disk
Addresses List<GetVirtual Machines V2Vm Cd Rom Disk Address> - ext
Id String - A globally unique identifier of an instance that is suitable for external consumption.
- iso
Type String
- backing
Infos GetVirtual Machines V2Vm Cd Rom Backing Info[] - disk
Addresses GetVirtual Machines V2Vm Cd Rom Disk Address[] - ext
Id string - A globally unique identifier of an instance that is suitable for external consumption.
- iso
Type string
- backing_
infos Sequence[GetVirtual Machines V2Vm Cd Rom Backing Info] - disk_
addresses Sequence[GetVirtual Machines V2Vm Cd Rom Disk Address] - ext_
id str - A globally unique identifier of an instance that is suitable for external consumption.
- iso_
type str
- backing
Infos List<Property Map> - disk
Addresses List<Property Map> - ext
Id String - A globally unique identifier of an instance that is suitable for external consumption.
- iso
Type String
GetVirtualMachinesV2VmCdRomBackingInfo
- Data
Sources List<PiersKarsenbarg. Nutanix. Inputs. Get Virtual Machines V2Vm Cd Rom Backing Info Data Source> - Disk
Ext stringId - Disk
Size intBytes - Is
Migration boolIn Progress - Storage
Configs List<PiersKarsenbarg. Nutanix. Inputs. Get Virtual Machines V2Vm Cd Rom Backing Info Storage Config> - Storage configuration for VM.
- Storage
Containers List<PiersKarsenbarg. Nutanix. Inputs. Get Virtual Machines V2Vm Cd Rom Backing Info Storage Container>
- data
Sources List<GetVirtual Machines V2Vm Cd Rom Backing Info Data Source> - disk
Ext StringId - disk
Size IntegerBytes - is
Migration BooleanIn Progress - storage
Configs List<GetVirtual Machines V2Vm Cd Rom Backing Info Storage Config> - Storage configuration for VM.
- storage
Containers List<GetVirtual Machines V2Vm Cd Rom Backing Info Storage Container>
- data_
sources Sequence[GetVirtual Machines V2Vm Cd Rom Backing Info Data Source] - disk_
ext_ strid - disk_
size_ intbytes - is_
migration_ boolin_ progress - storage_
configs Sequence[GetVirtual Machines V2Vm Cd Rom Backing Info Storage Config] - Storage configuration for VM.
- storage_
containers Sequence[GetVirtual Machines V2Vm Cd Rom Backing Info Storage Container]
- data
Sources List<Property Map> - disk
Ext StringId - disk
Size NumberBytes - is
Migration BooleanIn Progress - storage
Configs List<Property Map> - Storage configuration for VM.
- storage
Containers List<Property Map>
GetVirtualMachinesV2VmCdRomBackingInfoDataSource
GetVirtualMachinesV2VmCdRomBackingInfoDataSourceReference
GetVirtualMachinesV2VmCdRomBackingInfoDataSourceReferenceImageReference
- Image
Ext stringId
- Image
Ext stringId
- image
Ext StringId
- image
Ext stringId
- image_
ext_ strid
- image
Ext StringId
GetVirtualMachinesV2VmCdRomBackingInfoDataSourceReferenceVmDiskReference
GetVirtualMachinesV2VmCdRomBackingInfoDataSourceReferenceVmDiskReferenceDiskAddress
GetVirtualMachinesV2VmCdRomBackingInfoDataSourceReferenceVmDiskReferenceVmReference
- Ext
Id string - A globally unique identifier of an instance that is suitable for external consumption.
- Ext
Id string - A globally unique identifier of an instance that is suitable for external consumption.
- ext
Id String - A globally unique identifier of an instance that is suitable for external consumption.
- ext
Id 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.
- ext
Id String - A globally unique identifier of an instance that is suitable for external consumption.
GetVirtualMachinesV2VmCdRomBackingInfoStorageConfig
- Is
Flash boolMode Enabled
- Is
Flash boolMode Enabled
- is
Flash BooleanMode Enabled
- is
Flash booleanMode Enabled
- is
Flash BooleanMode Enabled
GetVirtualMachinesV2VmCdRomBackingInfoStorageContainer
- Ext
Id string - A globally unique identifier of an instance that is suitable for external consumption.
- Ext
Id string - A globally unique identifier of an instance that is suitable for external consumption.
- ext
Id String - A globally unique identifier of an instance that is suitable for external consumption.
- ext
Id 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.
- ext
Id String - A globally unique identifier of an instance that is suitable for external consumption.
GetVirtualMachinesV2VmCdRomDiskAddress
GetVirtualMachinesV2VmCluster
- Ext
Id string - A globally unique identifier of an instance that is suitable for external consumption.
- Ext
Id string - A globally unique identifier of an instance that is suitable for external consumption.
- ext
Id String - A globally unique identifier of an instance that is suitable for external consumption.
- ext
Id 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.
- ext
Id String - A globally unique identifier of an instance that is suitable for external consumption.
GetVirtualMachinesV2VmDisk
- Backing
Infos List<PiersKarsenbarg. Nutanix. Inputs. Get Virtual Machines V2Vm Disk Backing Info> - Disk
Addresses List<PiersKarsenbarg. Nutanix. Inputs. Get Virtual Machines V2Vm Disk Disk Address> - Ext
Id string - A globally unique identifier of an instance that is suitable for external consumption.
- Backing
Infos []GetVirtual Machines V2Vm Disk Backing Info - Disk
Addresses []GetVirtual Machines V2Vm Disk Disk Address - Ext
Id string - A globally unique identifier of an instance that is suitable for external consumption.
- backing
Infos List<GetVirtual Machines V2Vm Disk Backing Info> - disk
Addresses List<GetVirtual Machines V2Vm Disk Disk Address> - ext
Id String - A globally unique identifier of an instance that is suitable for external consumption.
- backing
Infos GetVirtual Machines V2Vm Disk Backing Info[] - disk
Addresses GetVirtual Machines V2Vm Disk Disk Address[] - ext
Id string - A globally unique identifier of an instance that is suitable for external consumption.
- backing_
infos Sequence[GetVirtual Machines V2Vm Disk Backing Info] - disk_
addresses Sequence[GetVirtual Machines V2Vm Disk Disk Address] - ext_
id str - A globally unique identifier of an instance that is suitable for external consumption.
- backing
Infos List<Property Map> - disk
Addresses List<Property Map> - ext
Id String - A globally unique identifier of an instance that is suitable for external consumption.
GetVirtualMachinesV2VmDiskBackingInfo
GetVirtualMachinesV2VmDiskBackingInfoAdfsVolumeGroupReference
- Volume
Group stringExt Id
- Volume
Group stringExt Id
- volume
Group StringExt Id
- volume
Group stringExt Id
- volume
Group StringExt Id
GetVirtualMachinesV2VmDiskBackingInfoVmDisk
- Data
Sources List<PiersKarsenbarg. Nutanix. Inputs. Get Virtual Machines V2Vm Disk Backing Info Vm Disk Data Source> - Disk
Ext stringId - Disk
Size intBytes - Is
Migration boolIn Progress - Storage
Configs List<PiersKarsenbarg. Nutanix. Inputs. Get Virtual Machines V2Vm Disk Backing Info Vm Disk Storage Config> - Storage configuration for VM.
- Storage
Containers List<PiersKarsenbarg. Nutanix. Inputs. Get Virtual Machines V2Vm Disk Backing Info Vm Disk Storage Container>
- Data
Sources []GetVirtual Machines V2Vm Disk Backing Info Vm Disk Data Source - Disk
Ext stringId - Disk
Size intBytes - Is
Migration boolIn Progress - Storage
Configs []GetVirtual Machines V2Vm Disk Backing Info Vm Disk Storage Config - Storage configuration for VM.
- Storage
Containers []GetVirtual Machines V2Vm Disk Backing Info Vm Disk Storage Container
- data
Sources List<GetVirtual Machines V2Vm Disk Backing Info Vm Disk Data Source> - disk
Ext StringId - disk
Size IntegerBytes - is
Migration BooleanIn Progress - storage
Configs List<GetVirtual Machines V2Vm Disk Backing Info Vm Disk Storage Config> - Storage configuration for VM.
- storage
Containers List<GetVirtual Machines V2Vm Disk Backing Info Vm Disk Storage Container>
- data
Sources GetVirtual Machines V2Vm Disk Backing Info Vm Disk Data Source[] - disk
Ext stringId - disk
Size numberBytes - is
Migration booleanIn Progress - storage
Configs GetVirtual Machines V2Vm Disk Backing Info Vm Disk Storage Config[] - Storage configuration for VM.
- storage
Containers GetVirtual Machines V2Vm Disk Backing Info Vm Disk Storage Container[]
- data_
sources Sequence[GetVirtual Machines V2Vm Disk Backing Info Vm Disk Data Source] - disk_
ext_ strid - disk_
size_ intbytes - is_
migration_ boolin_ progress - storage_
configs Sequence[GetVirtual Machines V2Vm Disk Backing Info Vm Disk Storage Config] - Storage configuration for VM.
- storage_
containers Sequence[GetVirtual Machines V2Vm Disk Backing Info Vm Disk Storage Container]
- data
Sources List<Property Map> - disk
Ext StringId - disk
Size NumberBytes - is
Migration BooleanIn Progress - storage
Configs List<Property Map> - Storage configuration for VM.
- storage
Containers List<Property Map>
GetVirtualMachinesV2VmDiskBackingInfoVmDiskDataSource
GetVirtualMachinesV2VmDiskBackingInfoVmDiskDataSourceReference
GetVirtualMachinesV2VmDiskBackingInfoVmDiskDataSourceReferenceImageReference
- Image
Ext stringId
- Image
Ext stringId
- image
Ext StringId
- image
Ext stringId
- image_
ext_ strid
- image
Ext StringId
GetVirtualMachinesV2VmDiskBackingInfoVmDiskDataSourceReferenceVmDiskReference
GetVirtualMachinesV2VmDiskBackingInfoVmDiskDataSourceReferenceVmDiskReferenceDiskAddress
GetVirtualMachinesV2VmDiskBackingInfoVmDiskDataSourceReferenceVmDiskReferenceVmReference
- Ext
Id string - A globally unique identifier of an instance that is suitable for external consumption.
- Ext
Id string - A globally unique identifier of an instance that is suitable for external consumption.
- ext
Id String - A globally unique identifier of an instance that is suitable for external consumption.
- ext
Id 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.
- ext
Id String - A globally unique identifier of an instance that is suitable for external consumption.
GetVirtualMachinesV2VmDiskBackingInfoVmDiskStorageConfig
- Is
Flash boolMode Enabled
- Is
Flash boolMode Enabled
- is
Flash BooleanMode Enabled
- is
Flash booleanMode Enabled
- is
Flash BooleanMode Enabled
GetVirtualMachinesV2VmDiskBackingInfoVmDiskStorageContainer
- Ext
Id string - A globally unique identifier of an instance that is suitable for external consumption.
- Ext
Id string - A globally unique identifier of an instance that is suitable for external consumption.
- ext
Id String - A globally unique identifier of an instance that is suitable for external consumption.
- ext
Id 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.
- ext
Id String - A globally unique identifier of an instance that is suitable for external consumption.
GetVirtualMachinesV2VmDiskDiskAddress
GetVirtualMachinesV2VmGpus
- Device
Id int - Ext
Id string - A globally unique identifier of an instance that is suitable for external consumption.
- Fraction int
- Frame
Buffer intSize Bytes - Guest
Driver stringVersion - Mode string
- Name string
- VM name.
- Num
Virtual intDisplay Heads - Pci
Addresses List<PiersKarsenbarg. Nutanix. Inputs. Get Virtual Machines V2Vm Gpus Pci Address> - Vendor string
- Device
Id int - Ext
Id string - A globally unique identifier of an instance that is suitable for external consumption.
- Fraction int
- Frame
Buffer intSize Bytes - Guest
Driver stringVersion - Mode string
- Name string
- VM name.
- Num
Virtual intDisplay Heads - Pci
Addresses []GetVirtual Machines V2Vm Gpus Pci Address - Vendor string
- device
Id Integer - ext
Id String - A globally unique identifier of an instance that is suitable for external consumption.
- fraction Integer
- frame
Buffer IntegerSize Bytes - guest
Driver StringVersion - mode String
- name String
- VM name.
- num
Virtual IntegerDisplay Heads - pci
Addresses List<GetVirtual Machines V2Vm Gpus Pci Address> - vendor String
- device
Id number - ext
Id string - A globally unique identifier of an instance that is suitable for external consumption.
- fraction number
- frame
Buffer numberSize Bytes - guest
Driver stringVersion - mode string
- name string
- VM name.
- num
Virtual numberDisplay Heads - pci
Addresses GetVirtual Machines V2Vm Gpus Pci Address[] - 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_ intsize_ bytes - guest_
driver_ strversion - mode str
- name str
- VM name.
- num_
virtual_ intdisplay_ heads - pci_
addresses Sequence[GetVirtual Machines V2Vm Gpus Pci Address] - vendor str
- device
Id Number - ext
Id String - A globally unique identifier of an instance that is suitable for external consumption.
- fraction Number
- frame
Buffer NumberSize Bytes - guest
Driver StringVersion - mode String
- name String
- VM name.
- num
Virtual NumberDisplay Heads - pci
Addresses List<Property Map> - vendor String
GetVirtualMachinesV2VmGpusPciAddress
GetVirtualMachinesV2VmGuestCustomization
GetVirtualMachinesV2VmGuestCustomizationConfig
GetVirtualMachinesV2VmGuestCustomizationConfigCloudInit
- cloud
Init List<Property Map>Scripts - datasource
Type String - metadata String
GetVirtualMachinesV2VmGuestCustomizationConfigCloudInitCloudInitScript
GetVirtualMachinesV2VmGuestCustomizationConfigCloudInitCloudInitScriptCustomKey
GetVirtualMachinesV2VmGuestCustomizationConfigCloudInitCloudInitScriptCustomKeyKeyValuePair
GetVirtualMachinesV2VmGuestCustomizationConfigCloudInitCloudInitScriptUserData
- Value string
- Value string
- value String
- value string
- value str
- value String
GetVirtualMachinesV2VmGuestCustomizationConfigSysprep
GetVirtualMachinesV2VmGuestCustomizationConfigSysprepSysprepScript
GetVirtualMachinesV2VmGuestCustomizationConfigSysprepSysprepScriptCustomKeyValue
GetVirtualMachinesV2VmGuestCustomizationConfigSysprepSysprepScriptCustomKeyValueKeyValuePair
GetVirtualMachinesV2VmGuestCustomizationConfigSysprepSysprepScriptUnattendXml
- Value string
- Value string
- value String
- value string
- value str
- value String
GetVirtualMachinesV2VmGuestTool
- Available
Version string - Capabilities List<string>
- Guest
Os stringVersion - Is
Enabled bool - Is
Installed bool - Is
Iso boolInserted - Is
Reachable bool - Is
Vm boolMobility Drivers Installed - Is
Vss boolSnapshot Capable - Version string
- Available
Version string - Capabilities []string
- Guest
Os stringVersion - Is
Enabled bool - Is
Installed bool - Is
Iso boolInserted - Is
Reachable bool - Is
Vm boolMobility Drivers Installed - Is
Vss boolSnapshot Capable - Version string
- available
Version String - capabilities List<String>
- guest
Os StringVersion - is
Enabled Boolean - is
Installed Boolean - is
Iso BooleanInserted - is
Reachable Boolean - is
Vm BooleanMobility Drivers Installed - is
Vss BooleanSnapshot Capable - version String
- available
Version string - capabilities string[]
- guest
Os stringVersion - is
Enabled boolean - is
Installed boolean - is
Iso booleanInserted - is
Reachable boolean - is
Vm booleanMobility Drivers Installed - is
Vss booleanSnapshot Capable - version string
- available_
version str - capabilities Sequence[str]
- guest_
os_ strversion - is_
enabled bool - is_
installed bool - is_
iso_ boolinserted - is_
reachable bool - is_
vm_ boolmobility_ drivers_ installed - is_
vss_ boolsnapshot_ capable - version str
- available
Version String - capabilities List<String>
- guest
Os StringVersion - is
Enabled Boolean - is
Installed Boolean - is
Iso BooleanInserted - is
Reachable Boolean - is
Vm BooleanMobility Drivers Installed - is
Vss BooleanSnapshot Capable - version String
GetVirtualMachinesV2VmHost
- Ext
Id string - A globally unique identifier of an instance that is suitable for external consumption.
- Ext
Id string - A globally unique identifier of an instance that is suitable for external consumption.
- ext
Id String - A globally unique identifier of an instance that is suitable for external consumption.
- ext
Id 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.
- ext
Id String - A globally unique identifier of an instance that is suitable for external consumption.
GetVirtualMachinesV2VmNic
- Backing
Infos List<PiersKarsenbarg. Nutanix. Inputs. Get Virtual Machines V2Vm Nic Backing Info> - Ext
Id string - A globally unique identifier of an instance that is suitable for external consumption.
- Network
Infos List<PiersKarsenbarg. Nutanix. Inputs. Get Virtual Machines V2Vm Nic Network Info>
- Backing
Infos []GetVirtual Machines V2Vm Nic Backing Info - Ext
Id string - A globally unique identifier of an instance that is suitable for external consumption.
- Network
Infos []GetVirtual Machines V2Vm Nic Network Info
- backing
Infos List<GetVirtual Machines V2Vm Nic Backing Info> - ext
Id String - A globally unique identifier of an instance that is suitable for external consumption.
- network
Infos List<GetVirtual Machines V2Vm Nic Network Info>
- backing
Infos GetVirtual Machines V2Vm Nic Backing Info[] - ext
Id string - A globally unique identifier of an instance that is suitable for external consumption.
- network
Infos GetVirtual Machines V2Vm Nic Network Info[]
- backing_
infos Sequence[GetVirtual Machines V2Vm Nic Backing Info] - ext_
id str - A globally unique identifier of an instance that is suitable for external consumption.
- network_
infos Sequence[GetVirtual Machines V2Vm Nic Network Info]
- backing
Infos List<Property Map> - ext
Id String - A globally unique identifier of an instance that is suitable for external consumption.
- network
Infos List<Property Map>
GetVirtualMachinesV2VmNicBackingInfo
- Is
Connected bool - Mac
Address string - Model string
- Num
Queues int
- Is
Connected bool - Mac
Address string - Model string
- Num
Queues int
- is
Connected Boolean - mac
Address String - model String
- num
Queues Integer
- is
Connected boolean - mac
Address string - model string
- num
Queues number
- is_
connected bool - mac_
address str - model str
- num_
queues int
- is
Connected Boolean - mac
Address String - model String
- num
Queues Number
GetVirtualMachinesV2VmNicNetworkInfo
- Ipv4Configs
List<Piers
Karsenbarg. Nutanix. Inputs. Get Virtual Machines V2Vm Nic Network Info Ipv4Config> - Ipv4Infos
List<Piers
Karsenbarg. Nutanix. Inputs. Get Virtual Machines V2Vm Nic Network Info Ipv4Info> - Network
Function List<PiersChains Karsenbarg. Nutanix. Inputs. Get Virtual Machines V2Vm Nic Network Info Network Function Chain> - Network
Function stringNic Type - Nic
Type string - Should
Allow boolUnknown Macs - Subnets
List<Piers
Karsenbarg. Nutanix. Inputs. Get Virtual Machines V2Vm Nic Network Info Subnet> - Trunked
Vlans List<int> - Vlan
Mode string
- Ipv4Configs
[]Get
Virtual Machines V2Vm Nic Network Info Ipv4Config - Ipv4Infos
[]Get
Virtual Machines V2Vm Nic Network Info Ipv4Info - Network
Function []GetChains Virtual Machines V2Vm Nic Network Info Network Function Chain - Network
Function stringNic Type - Nic
Type string - Should
Allow boolUnknown Macs - Subnets
[]Get
Virtual Machines V2Vm Nic Network Info Subnet - Trunked
Vlans []int - Vlan
Mode string
- ipv4Configs
List<Get
Virtual Machines V2Vm Nic Network Info Ipv4Config> - ipv4Infos
List<Get
Virtual Machines V2Vm Nic Network Info Ipv4Info> - network
Function List<GetChains Virtual Machines V2Vm Nic Network Info Network Function Chain> - network
Function StringNic Type - nic
Type String - should
Allow BooleanUnknown Macs - subnets
List<Get
Virtual Machines V2Vm Nic Network Info Subnet> - trunked
Vlans List<Integer> - vlan
Mode String
- ipv4Configs
Get
Virtual Machines V2Vm Nic Network Info Ipv4Config[] - ipv4Infos
Get
Virtual Machines V2Vm Nic Network Info Ipv4Info[] - network
Function GetChains Virtual Machines V2Vm Nic Network Info Network Function Chain[] - network
Function stringNic Type - nic
Type string - should
Allow booleanUnknown Macs - subnets
Get
Virtual Machines V2Vm Nic Network Info Subnet[] - trunked
Vlans number[] - vlan
Mode string
- ipv4_
configs Sequence[GetVirtual Machines V2Vm Nic Network Info Ipv4Config] - ipv4_
infos Sequence[GetVirtual Machines V2Vm Nic Network Info Ipv4Info] - network_
function_ Sequence[Getchains Virtual Machines V2Vm Nic Network Info Network Function Chain] - network_
function_ strnic_ type - nic_
type str - should_
allow_ boolunknown_ macs - subnets
Sequence[Get
Virtual Machines V2Vm Nic Network Info Subnet] - trunked_
vlans Sequence[int] - vlan_
mode str
GetVirtualMachinesV2VmNicNetworkInfoIpv4Config
GetVirtualMachinesV2VmNicNetworkInfoIpv4ConfigIpAddress
- Prefix
Length int - Value string
- Prefix
Length int - Value string
- prefix
Length Integer - value String
- prefix
Length number - value string
- prefix_
length int - value str
- prefix
Length Number - value String
GetVirtualMachinesV2VmNicNetworkInfoIpv4ConfigSecondaryIpAddressList
- Prefix
Length int - Value string
- Prefix
Length int - Value string
- prefix
Length Integer - value String
- prefix
Length number - value string
- prefix_
length int - value str
- prefix
Length Number - value String
GetVirtualMachinesV2VmNicNetworkInfoIpv4Info
GetVirtualMachinesV2VmNicNetworkInfoIpv4InfoLearnedIpAddress
- Prefix
Length int - Value string
- Prefix
Length int - Value string
- prefix
Length Integer - value String
- prefix
Length number - value string
- prefix_
length int - value str
- prefix
Length Number - value String
GetVirtualMachinesV2VmNicNetworkInfoNetworkFunctionChain
- Ext
Id string - A globally unique identifier of an instance that is suitable for external consumption.
- Ext
Id string - A globally unique identifier of an instance that is suitable for external consumption.
- ext
Id String - A globally unique identifier of an instance that is suitable for external consumption.
- ext
Id 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.
- ext
Id String - A globally unique identifier of an instance that is suitable for external consumption.
GetVirtualMachinesV2VmNicNetworkInfoSubnet
- Ext
Id string - A globally unique identifier of an instance that is suitable for external consumption.
- Ext
Id string - A globally unique identifier of an instance that is suitable for external consumption.
- ext
Id String - A globally unique identifier of an instance that is suitable for external consumption.
- ext
Id 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.
- ext
Id String - A globally unique identifier of an instance that is suitable for external consumption.
GetVirtualMachinesV2VmOwnershipInfo
GetVirtualMachinesV2VmOwnershipInfoOwner
- Ext
Id string - A globally unique identifier of an instance that is suitable for external consumption.
- Ext
Id string - A globally unique identifier of an instance that is suitable for external consumption.
- ext
Id String - A globally unique identifier of an instance that is suitable for external consumption.
- ext
Id 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.
- ext
Id String - A globally unique identifier of an instance that is suitable for external consumption.
GetVirtualMachinesV2VmProtectionPolicyState
GetVirtualMachinesV2VmProtectionPolicyStatePolicy
- Ext
Id string - A globally unique identifier of an instance that is suitable for external consumption.
- Ext
Id string - A globally unique identifier of an instance that is suitable for external consumption.
- ext
Id String - A globally unique identifier of an instance that is suitable for external consumption.
- ext
Id 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.
- ext
Id String - A globally unique identifier of an instance that is suitable for external consumption.
GetVirtualMachinesV2VmSerialPort
- Ext
Id string - A globally unique identifier of an instance that is suitable for external consumption.
- Index int
- Is
Connected bool
- Ext
Id string - A globally unique identifier of an instance that is suitable for external consumption.
- Index int
- Is
Connected bool
- ext
Id String - A globally unique identifier of an instance that is suitable for external consumption.
- index Integer
- is
Connected Boolean
- ext
Id string - A globally unique identifier of an instance that is suitable for external consumption.
- index number
- is
Connected boolean
- ext_
id str - A globally unique identifier of an instance that is suitable for external consumption.
- index int
- is_
connected bool
- ext
Id String - A globally unique identifier of an instance that is suitable for external consumption.
- index Number
- is
Connected Boolean
GetVirtualMachinesV2VmSource
- Entity
Type string - Ext
Id string - A globally unique identifier of an instance that is suitable for external consumption.
- Entity
Type string - Ext
Id string - A globally unique identifier of an instance that is suitable for external consumption.
- entity
Type String - ext
Id String - A globally unique identifier of an instance that is suitable for external consumption.
- entity
Type string - ext
Id 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.
- entity
Type String - ext
Id String - A globally unique identifier of an instance that is suitable for external consumption.
GetVirtualMachinesV2VmStorageConfig
GetVirtualMachinesV2VmStorageConfigQosConfig
- Throttled
Iops int
- Throttled
Iops int
- throttled
Iops Integer
- throttled
Iops number
- throttled_
iops int
- throttled
Iops Number
GetVirtualMachinesV2VmVtpmConfig
- Is
Vtpm boolEnabled - Version string
- Is
Vtpm boolEnabled - Version string
- is
Vtpm BooleanEnabled - version String
- is
Vtpm booleanEnabled - version string
- is_
vtpm_ boolenabled - version str
- is
Vtpm BooleanEnabled - version String
Package Details
- Repository
- nutanix pierskarsenbarg/pulumi-nutanix
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
nutanix
Terraform Provider.