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 This property is required. 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 This property is required. List<PiersKarsenbarg. Nutanix. Inputs. Get Virtual Machines V2Vm Availability Zone> - Bios
Uuid This property is required. string - BIOS UUID of the VM. It should be of type UUID.
- Boot
Configs This property is required. 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
This property is required. List<PiersKarsenbarg. Nutanix. Inputs. Get Virtual Machines V2Vm Category> - Categories for the VM.
- Cd
Roms This property is required. List<PiersKarsenbarg. Nutanix. Inputs. Get Virtual Machines V2Vm Cd Rom> - CD-ROMs attached to the VM.
- Clusters
This property is required. List<PiersKarsenbarg. Nutanix. Inputs. Get Virtual Machines V2Vm Cluster> - Reference to a cluster.
- Create
Time This property is required. string - VM creation time
- Description
This property is required. string - VM description
- Disks
This property is required. List<PiersKarsenbarg. Nutanix. Inputs. Get Virtual Machines V2Vm Disk> - Disks attached to the VM.
- Enabled
Cpu Features This property is required. 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
- Ext
Id This property is required. string - A globally unique identifier of an instance that is suitable for external consumption.
- Generation
Uuid This property is required. string - Generation UUID of the VM. It should be of type UUID.
- Gpuses
This property is required. List<PiersKarsenbarg. Nutanix. Inputs. Get Virtual Machines V2Vm Gpus> - GPUs attached to the VM.
- Guest
Customizations This property is required. 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 This property is required. List<PiersKarsenbarg. Nutanix. Inputs. Get Virtual Machines V2Vm Guest Tool> - The details about Nutanix Guest Tools for a VM.
- Hardware
Clock Timezone This property is required. string - VM hardware clock timezone in IANA TZDB format (America/Los_Angeles).
- Hosts
This property is required. List<PiersKarsenbarg. Nutanix. Inputs. Get Virtual Machines V2Vm Host> - Reference to the host, the VM is running on.
- Is
Agent Vm This property is required. 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 This property is required. bool - Indicates whether to remove AHV branding from VM firmware tables or not.
- Is
Cpu Hotplug Enabled This property is required. bool - Indicates whether the VM CPU hotplug is enabled.
- Is
Cpu Passthrough Enabled This property is required. 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 This property is required. bool - Indicates whether the vGPU console is enabled or not.
- Is
Memory Overcommit Enabled This property is required. 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 This property is required. bool - Indicates whether the VM SCSI controller is enabled.
- Is
Vcpu Hard Pinning Enabled This property is required. bool - Indicates whether the vCPUs should be hard pinned to specific pCPUs or not.
- Is
Vga Console Enabled This property is required. bool - Indicates whether the VGA console should be disabled or not.
- Machine
Type This property is required. string - Machine type for the VM. Machine type Q35 is required for secure boot and does not support IDE disks.
- Memory
Size Bytes This property is required. int - Memory size in bytes.
- Name
This property is required. string - VM name.
- Nics
This property is required. List<PiersKarsenbarg. Nutanix. Inputs. Get Virtual Machines V2Vm Nic> - NICs attached to the VM.
- Num
Cores Per Socket This property is required. int - Number of cores per socket.
- Num
Numa Nodes This property is required. int - Number of NUMA nodes. 0 means NUMA is disabled.
- Num
Sockets This property is required. int - Number of vCPU sockets.
- Num
Threads Per Core This property is required. int - Number of threads per core
- Ownership
Infos This property is required. List<PiersKarsenbarg. Nutanix. Inputs. Get Virtual Machines V2Vm Ownership Info> - Ownership information for the VM.
- Power
State This property is required. string - Protection
Policy States This property is required. List<PiersKarsenbarg. Nutanix. Inputs. Get Virtual Machines V2Vm Protection Policy State> - Status of protection policy applied to this VM.
- Protection
Type This property is required. 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 This property is required. List<PiersKarsenbarg. Nutanix. Inputs. Get Virtual Machines V2Vm Serial Port> - Serial ports configured on the VM.
- Sources
This property is required. List<PiersKarsenbarg. Nutanix. Inputs. Get Virtual Machines V2Vm Source> - Reference to an entity that the VM should be cloned or created from
- Storage
Configs This property is required. List<PiersKarsenbarg. Nutanix. Inputs. Get Virtual Machines V2Vm Storage Config> - Storage configuration for VM.
- Update
Time This property is required. string - VM last updated time.
- Vtpm
Configs This property is required. List<PiersKarsenbarg. Nutanix. Inputs. Get Virtual Machines V2Vm Vtpm Config> - Indicates how the vTPM for the VM should be configured.
- Apc
Configs This property is required. []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 This property is required. []GetVirtual Machines V2Vm Availability Zone - Bios
Uuid This property is required. string - BIOS UUID of the VM. It should be of type UUID.
- Boot
Configs This property is required. []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
This property is required. []GetVirtual Machines V2Vm Category - Categories for the VM.
- Cd
Roms This property is required. []GetVirtual Machines V2Vm Cd Rom - CD-ROMs attached to the VM.
- Clusters
This property is required. []GetVirtual Machines V2Vm Cluster - Reference to a cluster.
- Create
Time This property is required. string - VM creation time
- Description
This property is required. string - VM description
- Disks
This property is required. []GetVirtual Machines V2Vm Disk - Disks attached to the VM.
- Enabled
Cpu Features This property is required. []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
- Ext
Id This property is required. string - A globally unique identifier of an instance that is suitable for external consumption.
- Generation
Uuid This property is required. string - Generation UUID of the VM. It should be of type UUID.
- Gpuses
This property is required. []GetVirtual Machines V2Vm Gpus - GPUs attached to the VM.
- Guest
Customizations This property is required. []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 This property is required. []GetVirtual Machines V2Vm Guest Tool - The details about Nutanix Guest Tools for a VM.
- Hardware
Clock Timezone This property is required. string - VM hardware clock timezone in IANA TZDB format (America/Los_Angeles).
- Hosts
This property is required. []GetVirtual Machines V2Vm Host - Reference to the host, the VM is running on.
- Is
Agent Vm This property is required. 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 This property is required. bool - Indicates whether to remove AHV branding from VM firmware tables or not.
- Is
Cpu Hotplug Enabled This property is required. bool - Indicates whether the VM CPU hotplug is enabled.
- Is
Cpu Passthrough Enabled This property is required. 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 This property is required. bool - Indicates whether the vGPU console is enabled or not.
- Is
Memory Overcommit Enabled This property is required. 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 This property is required. bool - Indicates whether the VM SCSI controller is enabled.
- Is
Vcpu Hard Pinning Enabled This property is required. bool - Indicates whether the vCPUs should be hard pinned to specific pCPUs or not.
- Is
Vga Console Enabled This property is required. bool - Indicates whether the VGA console should be disabled or not.
- Machine
Type This property is required. string - Machine type for the VM. Machine type Q35 is required for secure boot and does not support IDE disks.
- Memory
Size Bytes This property is required. int - Memory size in bytes.
- Name
This property is required. string - VM name.
- Nics
This property is required. []GetVirtual Machines V2Vm Nic - NICs attached to the VM.
- Num
Cores Per Socket This property is required. int - Number of cores per socket.
- Num
Numa Nodes This property is required. int - Number of NUMA nodes. 0 means NUMA is disabled.
- Num
Sockets This property is required. int - Number of vCPU sockets.
- Num
Threads Per Core This property is required. int - Number of threads per core
- Ownership
Infos This property is required. []GetVirtual Machines V2Vm Ownership Info - Ownership information for the VM.
- Power
State This property is required. string - Protection
Policy States This property is required. []GetVirtual Machines V2Vm Protection Policy State - Status of protection policy applied to this VM.
- Protection
Type This property is required. 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 This property is required. []GetVirtual Machines V2Vm Serial Port - Serial ports configured on the VM.
- Sources
This property is required. []GetVirtual Machines V2Vm Source - Reference to an entity that the VM should be cloned or created from
- Storage
Configs This property is required. []GetVirtual Machines V2Vm Storage Config - Storage configuration for VM.
- Update
Time This property is required. string - VM last updated time.
- Vtpm
Configs This property is required. []GetVirtual Machines V2Vm Vtpm Config - Indicates how the vTPM for the VM should be configured.
- apc
Configs This property is required. 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 This property is required. List<GetVirtual Machines V2Vm Availability Zone> - bios
Uuid This property is required. String - BIOS UUID of the VM. It should be of type UUID.
- boot
Configs This property is required. 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
This property is required. List<GetVirtual Machines V2Vm Category> - Categories for the VM.
- cd
Roms This property is required. List<GetVirtual Machines V2Vm Cd Rom> - CD-ROMs attached to the VM.
- clusters
This property is required. List<GetVirtual Machines V2Vm Cluster> - Reference to a cluster.
- create
Time This property is required. String - VM creation time
- description
This property is required. String - VM description
- disks
This property is required. List<GetVirtual Machines V2Vm Disk> - Disks attached to the VM.
- enabled
Cpu Features This property is required. 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
- ext
Id This property is required. String - A globally unique identifier of an instance that is suitable for external consumption.
- generation
Uuid This property is required. String - Generation UUID of the VM. It should be of type UUID.
- gpuses
This property is required. List<GetVirtual Machines V2Vm Gpus> - GPUs attached to the VM.
- guest
Customizations This property is required. 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 This property is required. List<GetVirtual Machines V2Vm Guest Tool> - The details about Nutanix Guest Tools for a VM.
- hardware
Clock Timezone This property is required. String - VM hardware clock timezone in IANA TZDB format (America/Los_Angeles).
- hosts
This property is required. List<GetVirtual Machines V2Vm Host> - Reference to the host, the VM is running on.
- is
Agent Vm This property is required. 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.
- is
Branding Enabled This property is required. Boolean - Indicates whether to remove AHV branding from VM firmware tables or not.
- is
Cpu Hotplug Enabled This property is required. Boolean - Indicates whether the VM CPU hotplug is enabled.
- is
Cpu Passthrough Enabled This property is required. Boolean - 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 This property is required. Boolean - Indicates whether the vGPU console is enabled or not.
- is
Memory Overcommit Enabled This property is required. 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.
- is
Scsi Controller Enabled This property is required. Boolean - Indicates whether the VM SCSI controller is enabled.
- is
Vcpu Hard Pinning Enabled This property is required. Boolean - Indicates whether the vCPUs should be hard pinned to specific pCPUs or not.
- is
Vga Console Enabled This property is required. Boolean - Indicates whether the VGA console should be disabled or not.
- machine
Type This property is required. String - Machine type for the VM. Machine type Q35 is required for secure boot and does not support IDE disks.
- memory
Size Bytes This property is required. Integer - Memory size in bytes.
- name
This property is required. String - VM name.
- nics
This property is required. List<GetVirtual Machines V2Vm Nic> - NICs attached to the VM.
- num
Cores Per Socket This property is required. Integer - Number of cores per socket.
- num
Numa Nodes This property is required. Integer - Number of NUMA nodes. 0 means NUMA is disabled.
- num
Sockets This property is required. Integer - Number of vCPU sockets.
- num
Threads Per Core This property is required. Integer - Number of threads per core
- ownership
Infos This property is required. List<GetVirtual Machines V2Vm Ownership Info> - Ownership information for the VM.
- power
State This property is required. String - protection
Policy States This property is required. List<GetVirtual Machines V2Vm Protection Policy State> - Status of protection policy applied to this VM.
- protection
Type This property is required. 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 This property is required. List<GetVirtual Machines V2Vm Serial Port> - Serial ports configured on the VM.
- sources
This property is required. List<GetVirtual Machines V2Vm Source> - Reference to an entity that the VM should be cloned or created from
- storage
Configs This property is required. List<GetVirtual Machines V2Vm Storage Config> - Storage configuration for VM.
- update
Time This property is required. String - VM last updated time.
- vtpm
Configs This property is required. List<GetVirtual Machines V2Vm Vtpm Config> - Indicates how the vTPM for the VM should be configured.
- apc
Configs This property is required. 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 This property is required. GetVirtual Machines V2Vm Availability Zone[] - bios
Uuid This property is required. string - BIOS UUID of the VM. It should be of type UUID.
- boot
Configs This property is required. 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
This property is required. GetVirtual Machines V2Vm Category[] - Categories for the VM.
- cd
Roms This property is required. GetVirtual Machines V2Vm Cd Rom[] - CD-ROMs attached to the VM.
- clusters
This property is required. GetVirtual Machines V2Vm Cluster[] - Reference to a cluster.
- create
Time This property is required. string - VM creation time
- description
This property is required. string - VM description
- disks
This property is required. GetVirtual Machines V2Vm Disk[] - Disks attached to the VM.
- enabled
Cpu Features This property is required. 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
- ext
Id This property is required. string - A globally unique identifier of an instance that is suitable for external consumption.
- generation
Uuid This property is required. string - Generation UUID of the VM. It should be of type UUID.
- gpuses
This property is required. GetVirtual Machines V2Vm Gpus[] - GPUs attached to the VM.
- guest
Customizations This property is required. 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 This property is required. GetVirtual Machines V2Vm Guest Tool[] - The details about Nutanix Guest Tools for a VM.
- hardware
Clock Timezone This property is required. string - VM hardware clock timezone in IANA TZDB format (America/Los_Angeles).
- hosts
This property is required. GetVirtual Machines V2Vm Host[] - Reference to the host, the VM is running on.
- is
Agent Vm This property is required. 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.
- is
Branding Enabled This property is required. boolean - Indicates whether to remove AHV branding from VM firmware tables or not.
- is
Cpu Hotplug Enabled This property is required. boolean - Indicates whether the VM CPU hotplug is enabled.
- is
Cpu Passthrough Enabled This property is required. boolean - 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 This property is required. boolean - Indicates whether the vGPU console is enabled or not.
- is
Memory Overcommit Enabled This property is required. 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.
- is
Scsi Controller Enabled This property is required. boolean - Indicates whether the VM SCSI controller is enabled.
- is
Vcpu Hard Pinning Enabled This property is required. boolean - Indicates whether the vCPUs should be hard pinned to specific pCPUs or not.
- is
Vga Console Enabled This property is required. boolean - Indicates whether the VGA console should be disabled or not.
- machine
Type This property is required. string - Machine type for the VM. Machine type Q35 is required for secure boot and does not support IDE disks.
- memory
Size Bytes This property is required. number - Memory size in bytes.
- name
This property is required. string - VM name.
- nics
This property is required. GetVirtual Machines V2Vm Nic[] - NICs attached to the VM.
- num
Cores Per Socket This property is required. number - Number of cores per socket.
- num
Numa Nodes This property is required. number - Number of NUMA nodes. 0 means NUMA is disabled.
- num
Sockets This property is required. number - Number of vCPU sockets.
- num
Threads Per Core This property is required. number - Number of threads per core
- ownership
Infos This property is required. GetVirtual Machines V2Vm Ownership Info[] - Ownership information for the VM.
- power
State This property is required. string - protection
Policy States This property is required. GetVirtual Machines V2Vm Protection Policy State[] - Status of protection policy applied to this VM.
- protection
Type This property is required. 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 This property is required. GetVirtual Machines V2Vm Serial Port[] - Serial ports configured on the VM.
- sources
This property is required. GetVirtual Machines V2Vm Source[] - Reference to an entity that the VM should be cloned or created from
- storage
Configs This property is required. GetVirtual Machines V2Vm Storage Config[] - Storage configuration for VM.
- update
Time This property is required. string - VM last updated time.
- vtpm
Configs This property is required. GetVirtual Machines V2Vm Vtpm Config[] - Indicates how the vTPM for the VM should be configured.
- apc_
configs This property is required. 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 This property is required. Sequence[GetVirtual Machines V2Vm Availability Zone] - bios_
uuid This property is required. str - BIOS UUID of the VM. It should be of type UUID.
- boot_
configs This property is required. 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
This property is required. Sequence[GetVirtual Machines V2Vm Category] - Categories for the VM.
- cd_
roms This property is required. Sequence[GetVirtual Machines V2Vm Cd Rom] - CD-ROMs attached to the VM.
- clusters
This property is required. Sequence[GetVirtual Machines V2Vm Cluster] - Reference to a cluster.
- create_
time This property is required. str - VM creation time
- description
This property is required. str - VM description
- disks
This property is required. Sequence[GetVirtual Machines V2Vm Disk] - Disks attached to the VM.
- enabled_
cpu_ features This property is required. 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 This property is required. str - A globally unique identifier of an instance that is suitable for external consumption.
- generation_
uuid This property is required. str - Generation UUID of the VM. It should be of type UUID.
- gpuses
This property is required. Sequence[GetVirtual Machines V2Vm Gpus] - GPUs attached to the VM.
- guest_
customizations This property is required. 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 This property is required. Sequence[GetVirtual Machines V2Vm Guest Tool] - The details about Nutanix Guest Tools for a VM.
- hardware_
clock_ timezone This property is required. str - VM hardware clock timezone in IANA TZDB format (America/Los_Angeles).
- hosts
This property is required. Sequence[GetVirtual Machines V2Vm Host] - Reference to the host, the VM is running on.
- is_
agent_ vm This property is required. 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 This property is required. bool - Indicates whether to remove AHV branding from VM firmware tables or not.
- is_
cpu_ hotplug_ enabled This property is required. bool - Indicates whether the VM CPU hotplug is enabled.
- is_
cpu_ passthrough_ enabled This property is required. 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 This property is required. bool - Indicates whether the vGPU console is enabled or not.
- is_
memory_ overcommit_ enabled This property is required. 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 This property is required. bool - Indicates whether the VM SCSI controller is enabled.
- is_
vcpu_ hard_ pinning_ enabled This property is required. bool - Indicates whether the vCPUs should be hard pinned to specific pCPUs or not.
- is_
vga_ console_ enabled This property is required. bool - Indicates whether the VGA console should be disabled or not.
- machine_
type This property is required. str - Machine type for the VM. Machine type Q35 is required for secure boot and does not support IDE disks.
- memory_
size_ bytes This property is required. int - Memory size in bytes.
- name
This property is required. str - VM name.
- nics
This property is required. Sequence[GetVirtual Machines V2Vm Nic] - NICs attached to the VM.
- num_
cores_ per_ socket This property is required. int - Number of cores per socket.
- num_
numa_ nodes This property is required. int - Number of NUMA nodes. 0 means NUMA is disabled.
- num_
sockets This property is required. int - Number of vCPU sockets.
- num_
threads_ per_ core This property is required. int - Number of threads per core
- ownership_
infos This property is required. Sequence[GetVirtual Machines V2Vm Ownership Info] - Ownership information for the VM.
- power_
state This property is required. str - protection_
policy_ states This property is required. Sequence[GetVirtual Machines V2Vm Protection Policy State] - Status of protection policy applied to this VM.
- protection_
type This property is required. 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 This property is required. Sequence[GetVirtual Machines V2Vm Serial Port] - Serial ports configured on the VM.
- sources
This property is required. Sequence[GetVirtual Machines V2Vm Source] - Reference to an entity that the VM should be cloned or created from
- storage_
configs This property is required. Sequence[GetVirtual Machines V2Vm Storage Config] - Storage configuration for VM.
- update_
time This property is required. str - VM last updated time.
- vtpm_
configs This property is required. Sequence[GetVirtual Machines V2Vm Vtpm Config] - Indicates how the vTPM for the VM should be configured.
- apc
Configs This property is required. 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 This property is required. List<Property Map> - bios
Uuid This property is required. String - BIOS UUID of the VM. It should be of type UUID.
- boot
Configs This property is required. 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
This property is required. List<Property Map> - Categories for the VM.
- cd
Roms This property is required. List<Property Map> - CD-ROMs attached to the VM.
- clusters
This property is required. List<Property Map> - Reference to a cluster.
- create
Time This property is required. String - VM creation time
- description
This property is required. String - VM description
- disks
This property is required. List<Property Map> - Disks attached to the VM.
- enabled
Cpu Features This property is required. 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
- ext
Id This property is required. String - A globally unique identifier of an instance that is suitable for external consumption.
- generation
Uuid This property is required. String - Generation UUID of the VM. It should be of type UUID.
- gpuses
This property is required. List<Property Map> - GPUs attached to the VM.
- guest
Customizations This property is required. 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 This property is required. List<Property Map> - The details about Nutanix Guest Tools for a VM.
- hardware
Clock Timezone This property is required. String - VM hardware clock timezone in IANA TZDB format (America/Los_Angeles).
- hosts
This property is required. List<Property Map> - Reference to the host, the VM is running on.
- is
Agent Vm This property is required. 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.
- is
Branding Enabled This property is required. Boolean - Indicates whether to remove AHV branding from VM firmware tables or not.
- is
Cpu Hotplug Enabled This property is required. Boolean - Indicates whether the VM CPU hotplug is enabled.
- is
Cpu Passthrough Enabled This property is required. Boolean - 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 This property is required. Boolean - Indicates whether the vGPU console is enabled or not.
- is
Memory Overcommit Enabled This property is required. 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.
- is
Scsi Controller Enabled This property is required. Boolean - Indicates whether the VM SCSI controller is enabled.
- is
Vcpu Hard Pinning Enabled This property is required. Boolean - Indicates whether the vCPUs should be hard pinned to specific pCPUs or not.
- is
Vga Console Enabled This property is required. Boolean - Indicates whether the VGA console should be disabled or not.
- machine
Type This property is required. String - Machine type for the VM. Machine type Q35 is required for secure boot and does not support IDE disks.
- memory
Size Bytes This property is required. Number - Memory size in bytes.
- name
This property is required. String - VM name.
- nics
This property is required. List<Property Map> - NICs attached to the VM.
- num
Cores Per Socket This property is required. Number - Number of cores per socket.
- num
Numa Nodes This property is required. Number - Number of NUMA nodes. 0 means NUMA is disabled.
- num
Sockets This property is required. Number - Number of vCPU sockets.
- num
Threads Per Core This property is required. Number - Number of threads per core
- ownership
Infos This property is required. List<Property Map> - Ownership information for the VM.
- power
State This property is required. String - protection
Policy States This property is required. List<Property Map> - Status of protection policy applied to this VM.
- protection
Type This property is required. 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 This property is required. List<Property Map> - Serial ports configured on the VM.
- sources
This property is required. List<Property Map> - Reference to an entity that the VM should be cloned or created from
- storage
Configs This property is required. List<Property Map> - Storage configuration for VM.
- update
Time This property is required. String - VM last updated time.
- vtpm
Configs This property is required. List<Property Map> - Indicates how the vTPM for the VM should be configured.
GetVirtualMachinesV2VmApcConfig
- Cpu
Models This property is required. List<PiersKarsenbarg. Nutanix. Inputs. Get Virtual Machines V2Vm Apc Config Cpu Model> - Is
Apc Enabled This property is required. bool
- Cpu
Models This property is required. []GetVirtual Machines V2Vm Apc Config Cpu Model - Is
Apc Enabled This property is required. bool
- cpu
Models This property is required. List<GetVirtual Machines V2Vm Apc Config Cpu Model> - is
Apc Enabled This property is required. Boolean
- cpu
Models This property is required. GetVirtual Machines V2Vm Apc Config Cpu Model[] - is
Apc Enabled This property is required. boolean
- cpu_
models This property is required. Sequence[GetVirtual Machines V2Vm Apc Config Cpu Model] - is_
apc_ enabled This property is required. bool
- cpu
Models This property is required. List<Property Map> - is
Apc Enabled This property is required. Boolean
GetVirtualMachinesV2VmApcConfigCpuModel
GetVirtualMachinesV2VmAvailabilityZone
- Ext
Id This property is required. string - A globally unique identifier of an instance that is suitable for external consumption.
- Ext
Id This property is required. string - A globally unique identifier of an instance that is suitable for external consumption.
- ext
Id This property is required. String - A globally unique identifier of an instance that is suitable for external consumption.
- ext
Id This property is required. string - A globally unique identifier of an instance that is suitable for external consumption.
- ext_
id This property is required. str - A globally unique identifier of an instance that is suitable for external consumption.
- ext
Id This property is required. String - A globally unique identifier of an instance that is suitable for external consumption.
GetVirtualMachinesV2VmBootConfig
- Legacy
Boots This property is required. List<PiersKarsenbarg. Nutanix. Inputs. Get Virtual Machines V2Vm Boot Config Legacy Boot> - Uefi
Boots This property is required. List<PiersKarsenbarg. Nutanix. Inputs. Get Virtual Machines V2Vm Boot Config Uefi Boot>
- Legacy
Boots This property is required. []GetVirtual Machines V2Vm Boot Config Legacy Boot - Uefi
Boots This property is required. []GetVirtual Machines V2Vm Boot Config Uefi Boot
- legacy
Boots This property is required. List<GetVirtual Machines V2Vm Boot Config Legacy Boot> - uefi
Boots This property is required. List<GetVirtual Machines V2Vm Boot Config Uefi Boot>
- legacy
Boots This property is required. GetVirtual Machines V2Vm Boot Config Legacy Boot[] - uefi
Boots This property is required. GetVirtual Machines V2Vm Boot Config Uefi Boot[]
- legacy_
boots This property is required. Sequence[GetVirtual Machines V2Vm Boot Config Legacy Boot] - uefi_
boots This property is required. Sequence[GetVirtual Machines V2Vm Boot Config Uefi Boot]
- legacy
Boots This property is required. List<Property Map> - uefi
Boots This property is required. List<Property Map>
GetVirtualMachinesV2VmBootConfigLegacyBoot
- Boot
Devices This property is required. List<PiersKarsenbarg. Nutanix. Inputs. Get Virtual Machines V2Vm Boot Config Legacy Boot Boot Device> - Boot
Orders This property is required. List<string>
- Boot
Devices This property is required. []GetVirtual Machines V2Vm Boot Config Legacy Boot Boot Device - Boot
Orders This property is required. []string
- boot
Devices This property is required. List<GetVirtual Machines V2Vm Boot Config Legacy Boot Boot Device> - boot
Orders This property is required. List<String>
- boot
Devices This property is required. GetVirtual Machines V2Vm Boot Config Legacy Boot Boot Device[] - boot
Orders This property is required. string[]
- boot_
devices This property is required. Sequence[GetVirtual Machines V2Vm Boot Config Legacy Boot Boot Device] - boot_
orders This property is required. Sequence[str]
- boot
Devices This property is required. List<Property Map> - boot
Orders This property is required. List<String>
GetVirtualMachinesV2VmBootConfigLegacyBootBootDevice
- Boot
Device Disks This property is required. []GetVirtual Machines V2Vm Boot Config Legacy Boot Boot Device Boot Device Disk - Boot
Device Nics This property is required. []GetVirtual Machines V2Vm Boot Config Legacy Boot Boot Device Boot Device Nic
- boot
Device Disks This property is required. List<GetVirtual Machines V2Vm Boot Config Legacy Boot Boot Device Boot Device Disk> - boot
Device Nics This property is required. List<GetVirtual Machines V2Vm Boot Config Legacy Boot Boot Device Boot Device Nic>
- boot
Device Disks This property is required. GetVirtual Machines V2Vm Boot Config Legacy Boot Boot Device Boot Device Disk[] - boot
Device Nics This property is required. GetVirtual Machines V2Vm Boot Config Legacy Boot Boot Device Boot Device Nic[]
- boot_
device_ disks This property is required. Sequence[GetVirtual Machines V2Vm Boot Config Legacy Boot Boot Device Boot Device Disk] - boot_
device_ nics This property is required. Sequence[GetVirtual Machines V2Vm Boot Config Legacy Boot Boot Device Boot Device Nic]
- boot
Device Disks This property is required. List<Property Map> - boot
Device Nics This property is required. List<Property Map>
GetVirtualMachinesV2VmBootConfigLegacyBootBootDeviceBootDeviceDisk
- Disk
Addresses This property is required. []GetVirtual Machines V2Vm Boot Config Legacy Boot Boot Device Boot Device Disk Disk Address
- disk
Addresses This property is required. List<GetVirtual Machines V2Vm Boot Config Legacy Boot Boot Device Boot Device Disk Disk Address>
- disk
Addresses This property is required. GetVirtual Machines V2Vm Boot Config Legacy Boot Boot Device Boot Device Disk Disk Address[]
- disk_
addresses This property is required. Sequence[GetVirtual Machines V2Vm Boot Config Legacy Boot Boot Device Boot Device Disk Disk Address]
- disk
Addresses This property is required. List<Property Map>
GetVirtualMachinesV2VmBootConfigLegacyBootBootDeviceBootDeviceDiskDiskAddress
GetVirtualMachinesV2VmBootConfigLegacyBootBootDeviceBootDeviceNic
- Mac
Address This property is required. string
- Mac
Address This property is required. string
- mac
Address This property is required. String
- mac
Address This property is required. string
- mac_
address This property is required. str
- mac
Address This property is required. String
GetVirtualMachinesV2VmBootConfigUefiBoot
- Is
Secure Boot Enabled This property is required. bool - Nvram
Devices This property is required. List<PiersKarsenbarg. Nutanix. Inputs. Get Virtual Machines V2Vm Boot Config Uefi Boot Nvram Device>
- Is
Secure Boot Enabled This property is required. bool - Nvram
Devices This property is required. []GetVirtual Machines V2Vm Boot Config Uefi Boot Nvram Device
- is
Secure Boot Enabled This property is required. Boolean - nvram
Devices This property is required. List<GetVirtual Machines V2Vm Boot Config Uefi Boot Nvram Device>
- is
Secure Boot Enabled This property is required. boolean - nvram
Devices This property is required. GetVirtual Machines V2Vm Boot Config Uefi Boot Nvram Device[]
- is_
secure_ boot_ enabled This property is required. bool - nvram_
devices This property is required. Sequence[GetVirtual Machines V2Vm Boot Config Uefi Boot Nvram Device]
- is
Secure Boot Enabled This property is required. Boolean - nvram
Devices This property is required. List<Property Map>
GetVirtualMachinesV2VmBootConfigUefiBootNvramDevice
- Backing
Storage Infos This property is required. []GetVirtual Machines V2Vm Boot Config Uefi Boot Nvram Device Backing Storage Info
- backing
Storage Infos This property is required. List<GetVirtual Machines V2Vm Boot Config Uefi Boot Nvram Device Backing Storage Info>
- backing
Storage Infos This property is required. GetVirtual Machines V2Vm Boot Config Uefi Boot Nvram Device Backing Storage Info[]
- backing_
storage_ infos This property is required. Sequence[GetVirtual Machines V2Vm Boot Config Uefi Boot Nvram Device Backing Storage Info]
- backing
Storage Infos This property is required. List<Property Map>
GetVirtualMachinesV2VmBootConfigUefiBootNvramDeviceBackingStorageInfo
- Data
Sources This property is required. List<PiersKarsenbarg. Nutanix. Inputs. Get Virtual Machines V2Vm Boot Config Uefi Boot Nvram Device Backing Storage Info Data Source> - Disk
Ext Id This property is required. string - Disk
Size Bytes This property is required. int - Is
Migration In Progress This property is required. bool - Storage
Configs This property is required. 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 This property is required. List<PiersKarsenbarg. Nutanix. Inputs. Get Virtual Machines V2Vm Boot Config Uefi Boot Nvram Device Backing Storage Info Storage Container>
- Data
Sources This property is required. []GetVirtual Machines V2Vm Boot Config Uefi Boot Nvram Device Backing Storage Info Data Source - Disk
Ext Id This property is required. string - Disk
Size Bytes This property is required. int - Is
Migration In Progress This property is required. bool - Storage
Configs This property is required. []GetVirtual Machines V2Vm Boot Config Uefi Boot Nvram Device Backing Storage Info Storage Config - Storage configuration for VM.
- Storage
Containers This property is required. []GetVirtual Machines V2Vm Boot Config Uefi Boot Nvram Device Backing Storage Info Storage Container
- data
Sources This property is required. List<GetVirtual Machines V2Vm Boot Config Uefi Boot Nvram Device Backing Storage Info Data Source> - disk
Ext Id This property is required. String - disk
Size Bytes This property is required. Integer - is
Migration In Progress This property is required. Boolean - storage
Configs This property is required. List<GetVirtual Machines V2Vm Boot Config Uefi Boot Nvram Device Backing Storage Info Storage Config> - Storage configuration for VM.
- storage
Containers This property is required. List<GetVirtual Machines V2Vm Boot Config Uefi Boot Nvram Device Backing Storage Info Storage Container>
- data
Sources This property is required. GetVirtual Machines V2Vm Boot Config Uefi Boot Nvram Device Backing Storage Info Data Source[] - disk
Ext Id This property is required. string - disk
Size Bytes This property is required. number - is
Migration In Progress This property is required. boolean - storage
Configs This property is required. GetVirtual Machines V2Vm Boot Config Uefi Boot Nvram Device Backing Storage Info Storage Config[] - Storage configuration for VM.
- storage
Containers This property is required. GetVirtual Machines V2Vm Boot Config Uefi Boot Nvram Device Backing Storage Info Storage Container[]
- data_
sources This property is required. Sequence[GetVirtual Machines V2Vm Boot Config Uefi Boot Nvram Device Backing Storage Info Data Source] - disk_
ext_ id This property is required. str - disk_
size_ bytes This property is required. int - is_
migration_ in_ progress This property is required. bool - storage_
configs This property is required. Sequence[GetVirtual Machines V2Vm Boot Config Uefi Boot Nvram Device Backing Storage Info Storage Config] - Storage configuration for VM.
- storage_
containers This property is required. Sequence[GetVirtual Machines V2Vm Boot Config Uefi Boot Nvram Device Backing Storage Info Storage Container]
- data
Sources This property is required. List<Property Map> - disk
Ext Id This property is required. String - disk
Size Bytes This property is required. Number - is
Migration In Progress This property is required. Boolean - storage
Configs This property is required. List<Property Map> - Storage configuration for VM.
- storage
Containers This property is required. List<Property Map>
GetVirtualMachinesV2VmBootConfigUefiBootNvramDeviceBackingStorageInfoDataSource
- References
This property is required. []GetVirtual Machines V2Vm Boot Config Uefi Boot Nvram Device Backing Storage Info Data Source Reference
- references
This property is required. List<GetVirtual Machines V2Vm Boot Config Uefi Boot Nvram Device Backing Storage Info Data Source Reference>
- references
This property is required. GetVirtual Machines V2Vm Boot Config Uefi Boot Nvram Device Backing Storage Info Data Source Reference[]
- references
This property is required. Sequence[GetVirtual Machines V2Vm Boot Config Uefi Boot Nvram Device Backing Storage Info Data Source Reference]
- references
This property is required. List<Property Map>
GetVirtualMachinesV2VmBootConfigUefiBootNvramDeviceBackingStorageInfoDataSourceReference
- Image
References This property is required. List<PiersKarsenbarg. Nutanix. Inputs. Get Virtual Machines V2Vm Boot Config Uefi Boot Nvram Device Backing Storage Info Data Source Reference Image Reference> - Vm
Disk References This property is required. List<PiersKarsenbarg. Nutanix. Inputs. Get Virtual Machines V2Vm Boot Config Uefi Boot Nvram Device Backing Storage Info Data Source Reference Vm Disk Reference>
- image
References This property is required. List<GetVirtual Machines V2Vm Boot Config Uefi Boot Nvram Device Backing Storage Info Data Source Reference Image Reference> - vm
Disk References This property is required. List<GetVirtual Machines V2Vm Boot Config Uefi Boot Nvram Device Backing Storage Info Data Source Reference Vm Disk Reference>
- image_
references This property is required. Sequence[GetVirtual Machines V2Vm Boot Config Uefi Boot Nvram Device Backing Storage Info Data Source Reference Image Reference] - vm_
disk_ references This property is required. Sequence[GetVirtual Machines V2Vm Boot Config Uefi Boot Nvram Device Backing Storage Info Data Source Reference Vm Disk Reference]
- image
References This property is required. List<Property Map> - vm
Disk References This property is required. List<Property Map>
GetVirtualMachinesV2VmBootConfigUefiBootNvramDeviceBackingStorageInfoDataSourceReferenceImageReference
- Image
Ext Id This property is required. string
- Image
Ext Id This property is required. string
- image
Ext Id This property is required. String
- image
Ext Id This property is required. string
- image_
ext_ id This property is required. str
- image
Ext Id This property is required. String
GetVirtualMachinesV2VmBootConfigUefiBootNvramDeviceBackingStorageInfoDataSourceReferenceVmDiskReference
- Disk
Addresses This property is required. 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 Id This property is required. string - Vm
References This property is required. 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>
- Disk
Addresses This property is required. []GetVirtual Machines V2Vm Boot Config Uefi Boot Nvram Device Backing Storage Info Data Source Reference Vm Disk Reference Disk Address - Disk
Ext Id This property is required. string - Vm
References This property is required. []GetVirtual Machines V2Vm Boot Config Uefi Boot Nvram Device Backing Storage Info Data Source Reference Vm Disk Reference Vm Reference
- disk
Addresses This property is required. List<GetVirtual Machines V2Vm Boot Config Uefi Boot Nvram Device Backing Storage Info Data Source Reference Vm Disk Reference Disk Address> - disk
Ext Id This property is required. String - vm
References This property is required. List<GetVirtual Machines V2Vm Boot Config Uefi Boot Nvram Device Backing Storage Info Data Source Reference Vm Disk Reference Vm Reference>
- disk
Addresses This property is required. GetVirtual Machines V2Vm Boot Config Uefi Boot Nvram Device Backing Storage Info Data Source Reference Vm Disk Reference Disk Address[] - disk
Ext Id This property is required. string - vm
References This property is required. GetVirtual Machines V2Vm Boot Config Uefi Boot Nvram Device Backing Storage Info Data Source Reference Vm Disk Reference Vm Reference[]
- disk_
addresses This property is required. Sequence[GetVirtual Machines V2Vm Boot Config Uefi Boot Nvram Device Backing Storage Info Data Source Reference Vm Disk Reference Disk Address] - disk_
ext_ id This property is required. str - vm_
references This property is required. Sequence[GetVirtual Machines V2Vm Boot Config Uefi Boot Nvram Device Backing Storage Info Data Source Reference Vm Disk Reference Vm Reference]
- disk
Addresses This property is required. List<Property Map> - disk
Ext Id This property is required. String - vm
References This property is required. List<Property Map>
GetVirtualMachinesV2VmBootConfigUefiBootNvramDeviceBackingStorageInfoDataSourceReferenceVmDiskReferenceDiskAddress
GetVirtualMachinesV2VmBootConfigUefiBootNvramDeviceBackingStorageInfoDataSourceReferenceVmDiskReferenceVmReference
- Ext
Id This property is required. string - A globally unique identifier of an instance that is suitable for external consumption.
- Ext
Id This property is required. string - A globally unique identifier of an instance that is suitable for external consumption.
- ext
Id This property is required. String - A globally unique identifier of an instance that is suitable for external consumption.
- ext
Id This property is required. string - A globally unique identifier of an instance that is suitable for external consumption.
- ext_
id This property is required. str - A globally unique identifier of an instance that is suitable for external consumption.
- ext
Id This property is required. String - A globally unique identifier of an instance that is suitable for external consumption.
GetVirtualMachinesV2VmBootConfigUefiBootNvramDeviceBackingStorageInfoStorageConfig
- Is
Flash Mode Enabled This property is required. bool
- Is
Flash Mode Enabled This property is required. bool
- is
Flash Mode Enabled This property is required. Boolean
- is
Flash Mode Enabled This property is required. boolean
- is_
flash_ mode_ enabled This property is required. bool
- is
Flash Mode Enabled This property is required. Boolean
GetVirtualMachinesV2VmBootConfigUefiBootNvramDeviceBackingStorageInfoStorageContainer
- Ext
Id This property is required. string - A globally unique identifier of an instance that is suitable for external consumption.
- Ext
Id This property is required. string - A globally unique identifier of an instance that is suitable for external consumption.
- ext
Id This property is required. String - A globally unique identifier of an instance that is suitable for external consumption.
- ext
Id This property is required. string - A globally unique identifier of an instance that is suitable for external consumption.
- ext_
id This property is required. str - A globally unique identifier of an instance that is suitable for external consumption.
- ext
Id This property is required. String - A globally unique identifier of an instance that is suitable for external consumption.
GetVirtualMachinesV2VmCategory
- Ext
Id This property is required. string - A globally unique identifier of an instance that is suitable for external consumption.
- Ext
Id This property is required. string - A globally unique identifier of an instance that is suitable for external consumption.
- ext
Id This property is required. String - A globally unique identifier of an instance that is suitable for external consumption.
- ext
Id This property is required. string - A globally unique identifier of an instance that is suitable for external consumption.
- ext_
id This property is required. str - A globally unique identifier of an instance that is suitable for external consumption.
- ext
Id This property is required. String - A globally unique identifier of an instance that is suitable for external consumption.
GetVirtualMachinesV2VmCdRom
- Backing
Infos This property is required. List<PiersKarsenbarg. Nutanix. Inputs. Get Virtual Machines V2Vm Cd Rom Backing Info> - Disk
Addresses This property is required. List<PiersKarsenbarg. Nutanix. Inputs. Get Virtual Machines V2Vm Cd Rom Disk Address> - Ext
Id This property is required. string - A globally unique identifier of an instance that is suitable for external consumption.
- Iso
Type This property is required. string
- Backing
Infos This property is required. []GetVirtual Machines V2Vm Cd Rom Backing Info - Disk
Addresses This property is required. []GetVirtual Machines V2Vm Cd Rom Disk Address - Ext
Id This property is required. string - A globally unique identifier of an instance that is suitable for external consumption.
- Iso
Type This property is required. string
- backing
Infos This property is required. List<GetVirtual Machines V2Vm Cd Rom Backing Info> - disk
Addresses This property is required. List<GetVirtual Machines V2Vm Cd Rom Disk Address> - ext
Id This property is required. String - A globally unique identifier of an instance that is suitable for external consumption.
- iso
Type This property is required. String
- backing
Infos This property is required. GetVirtual Machines V2Vm Cd Rom Backing Info[] - disk
Addresses This property is required. GetVirtual Machines V2Vm Cd Rom Disk Address[] - ext
Id This property is required. string - A globally unique identifier of an instance that is suitable for external consumption.
- iso
Type This property is required. string
- backing_
infos This property is required. Sequence[GetVirtual Machines V2Vm Cd Rom Backing Info] - disk_
addresses This property is required. Sequence[GetVirtual Machines V2Vm Cd Rom Disk Address] - ext_
id This property is required. str - A globally unique identifier of an instance that is suitable for external consumption.
- iso_
type This property is required. str
- backing
Infos This property is required. List<Property Map> - disk
Addresses This property is required. List<Property Map> - ext
Id This property is required. String - A globally unique identifier of an instance that is suitable for external consumption.
- iso
Type This property is required. String
GetVirtualMachinesV2VmCdRomBackingInfo
- Data
Sources This property is required. List<PiersKarsenbarg. Nutanix. Inputs. Get Virtual Machines V2Vm Cd Rom Backing Info Data Source> - Disk
Ext Id This property is required. string - Disk
Size Bytes This property is required. int - Is
Migration In Progress This property is required. bool - Storage
Configs This property is required. List<PiersKarsenbarg. Nutanix. Inputs. Get Virtual Machines V2Vm Cd Rom Backing Info Storage Config> - Storage configuration for VM.
- Storage
Containers This property is required. List<PiersKarsenbarg. Nutanix. Inputs. Get Virtual Machines V2Vm Cd Rom Backing Info Storage Container>
- Data
Sources This property is required. []GetVirtual Machines V2Vm Cd Rom Backing Info Data Source - Disk
Ext Id This property is required. string - Disk
Size Bytes This property is required. int - Is
Migration In Progress This property is required. bool - Storage
Configs This property is required. []GetVirtual Machines V2Vm Cd Rom Backing Info Storage Config - Storage configuration for VM.
- Storage
Containers This property is required. []GetVirtual Machines V2Vm Cd Rom Backing Info Storage Container
- data
Sources This property is required. List<GetVirtual Machines V2Vm Cd Rom Backing Info Data Source> - disk
Ext Id This property is required. String - disk
Size Bytes This property is required. Integer - is
Migration In Progress This property is required. Boolean - storage
Configs This property is required. List<GetVirtual Machines V2Vm Cd Rom Backing Info Storage Config> - Storage configuration for VM.
- storage
Containers This property is required. List<GetVirtual Machines V2Vm Cd Rom Backing Info Storage Container>
- data
Sources This property is required. GetVirtual Machines V2Vm Cd Rom Backing Info Data Source[] - disk
Ext Id This property is required. string - disk
Size Bytes This property is required. number - is
Migration In Progress This property is required. boolean - storage
Configs This property is required. GetVirtual Machines V2Vm Cd Rom Backing Info Storage Config[] - Storage configuration for VM.
- storage
Containers This property is required. GetVirtual Machines V2Vm Cd Rom Backing Info Storage Container[]
- data_
sources This property is required. Sequence[GetVirtual Machines V2Vm Cd Rom Backing Info Data Source] - disk_
ext_ id This property is required. str - disk_
size_ bytes This property is required. int - is_
migration_ in_ progress This property is required. bool - storage_
configs This property is required. Sequence[GetVirtual Machines V2Vm Cd Rom Backing Info Storage Config] - Storage configuration for VM.
- storage_
containers This property is required. Sequence[GetVirtual Machines V2Vm Cd Rom Backing Info Storage Container]
- data
Sources This property is required. List<Property Map> - disk
Ext Id This property is required. String - disk
Size Bytes This property is required. Number - is
Migration In Progress This property is required. Boolean - storage
Configs This property is required. List<Property Map> - Storage configuration for VM.
- storage
Containers This property is required. List<Property Map>
GetVirtualMachinesV2VmCdRomBackingInfoDataSource
- References
This property is required. List<PiersKarsenbarg. Nutanix. Inputs. Get Virtual Machines V2Vm Cd Rom Backing Info Data Source Reference>
- References
This property is required. []GetVirtual Machines V2Vm Cd Rom Backing Info Data Source Reference
- references
This property is required. List<GetVirtual Machines V2Vm Cd Rom Backing Info Data Source Reference>
- references
This property is required. GetVirtual Machines V2Vm Cd Rom Backing Info Data Source Reference[]
- references
This property is required. Sequence[GetVirtual Machines V2Vm Cd Rom Backing Info Data Source Reference]
- references
This property is required. List<Property Map>
GetVirtualMachinesV2VmCdRomBackingInfoDataSourceReference
- Image
References This property is required. List<PiersKarsenbarg. Nutanix. Inputs. Get Virtual Machines V2Vm Cd Rom Backing Info Data Source Reference Image Reference> - Vm
Disk References This property is required. List<PiersKarsenbarg. Nutanix. Inputs. Get Virtual Machines V2Vm Cd Rom Backing Info Data Source Reference Vm Disk Reference>
- Image
References This property is required. []GetVirtual Machines V2Vm Cd Rom Backing Info Data Source Reference Image Reference - Vm
Disk References This property is required. []GetVirtual Machines V2Vm Cd Rom Backing Info Data Source Reference Vm Disk Reference
- image
References This property is required. List<GetVirtual Machines V2Vm Cd Rom Backing Info Data Source Reference Image Reference> - vm
Disk References This property is required. List<GetVirtual Machines V2Vm Cd Rom Backing Info Data Source Reference Vm Disk Reference>
- image
References This property is required. GetVirtual Machines V2Vm Cd Rom Backing Info Data Source Reference Image Reference[] - vm
Disk References This property is required. GetVirtual Machines V2Vm Cd Rom Backing Info Data Source Reference Vm Disk Reference[]
- image_
references This property is required. Sequence[GetVirtual Machines V2Vm Cd Rom Backing Info Data Source Reference Image Reference] - vm_
disk_ references This property is required. Sequence[GetVirtual Machines V2Vm Cd Rom Backing Info Data Source Reference Vm Disk Reference]
- image
References This property is required. List<Property Map> - vm
Disk References This property is required. List<Property Map>
GetVirtualMachinesV2VmCdRomBackingInfoDataSourceReferenceImageReference
- Image
Ext Id This property is required. string
- Image
Ext Id This property is required. string
- image
Ext Id This property is required. String
- image
Ext Id This property is required. string
- image_
ext_ id This property is required. str
- image
Ext Id This property is required. String
GetVirtualMachinesV2VmCdRomBackingInfoDataSourceReferenceVmDiskReference
- Disk
Addresses This property is required. List<PiersKarsenbarg. Nutanix. Inputs. Get Virtual Machines V2Vm Cd Rom Backing Info Data Source Reference Vm Disk Reference Disk Address> - Disk
Ext Id This property is required. string - Vm
References This property is required. List<PiersKarsenbarg. Nutanix. Inputs. Get Virtual Machines V2Vm Cd Rom Backing Info Data Source Reference Vm Disk Reference Vm Reference>
- Disk
Addresses This property is required. []GetVirtual Machines V2Vm Cd Rom Backing Info Data Source Reference Vm Disk Reference Disk Address - Disk
Ext Id This property is required. string - Vm
References This property is required. []GetVirtual Machines V2Vm Cd Rom Backing Info Data Source Reference Vm Disk Reference Vm Reference
- disk
Addresses This property is required. List<GetVirtual Machines V2Vm Cd Rom Backing Info Data Source Reference Vm Disk Reference Disk Address> - disk
Ext Id This property is required. String - vm
References This property is required. List<GetVirtual Machines V2Vm Cd Rom Backing Info Data Source Reference Vm Disk Reference Vm Reference>
- disk
Addresses This property is required. GetVirtual Machines V2Vm Cd Rom Backing Info Data Source Reference Vm Disk Reference Disk Address[] - disk
Ext Id This property is required. string - vm
References This property is required. GetVirtual Machines V2Vm Cd Rom Backing Info Data Source Reference Vm Disk Reference Vm Reference[]
- disk_
addresses This property is required. Sequence[GetVirtual Machines V2Vm Cd Rom Backing Info Data Source Reference Vm Disk Reference Disk Address] - disk_
ext_ id This property is required. str - vm_
references This property is required. Sequence[GetVirtual Machines V2Vm Cd Rom Backing Info Data Source Reference Vm Disk Reference Vm Reference]
- disk
Addresses This property is required. List<Property Map> - disk
Ext Id This property is required. String - vm
References This property is required. List<Property Map>
GetVirtualMachinesV2VmCdRomBackingInfoDataSourceReferenceVmDiskReferenceDiskAddress
GetVirtualMachinesV2VmCdRomBackingInfoDataSourceReferenceVmDiskReferenceVmReference
- Ext
Id This property is required. string - A globally unique identifier of an instance that is suitable for external consumption.
- Ext
Id This property is required. string - A globally unique identifier of an instance that is suitable for external consumption.
- ext
Id This property is required. String - A globally unique identifier of an instance that is suitable for external consumption.
- ext
Id This property is required. string - A globally unique identifier of an instance that is suitable for external consumption.
- ext_
id This property is required. str - A globally unique identifier of an instance that is suitable for external consumption.
- ext
Id This property is required. String - A globally unique identifier of an instance that is suitable for external consumption.
GetVirtualMachinesV2VmCdRomBackingInfoStorageConfig
- Is
Flash Mode Enabled This property is required. bool
- Is
Flash Mode Enabled This property is required. bool
- is
Flash Mode Enabled This property is required. Boolean
- is
Flash Mode Enabled This property is required. boolean
- is_
flash_ mode_ enabled This property is required. bool
- is
Flash Mode Enabled This property is required. Boolean
GetVirtualMachinesV2VmCdRomBackingInfoStorageContainer
- Ext
Id This property is required. string - A globally unique identifier of an instance that is suitable for external consumption.
- Ext
Id This property is required. string - A globally unique identifier of an instance that is suitable for external consumption.
- ext
Id This property is required. String - A globally unique identifier of an instance that is suitable for external consumption.
- ext
Id This property is required. string - A globally unique identifier of an instance that is suitable for external consumption.
- ext_
id This property is required. str - A globally unique identifier of an instance that is suitable for external consumption.
- ext
Id This property is required. String - A globally unique identifier of an instance that is suitable for external consumption.
GetVirtualMachinesV2VmCdRomDiskAddress
GetVirtualMachinesV2VmCluster
- Ext
Id This property is required. string - A globally unique identifier of an instance that is suitable for external consumption.
- Ext
Id This property is required. string - A globally unique identifier of an instance that is suitable for external consumption.
- ext
Id This property is required. String - A globally unique identifier of an instance that is suitable for external consumption.
- ext
Id This property is required. string - A globally unique identifier of an instance that is suitable for external consumption.
- ext_
id This property is required. str - A globally unique identifier of an instance that is suitable for external consumption.
- ext
Id This property is required. String - A globally unique identifier of an instance that is suitable for external consumption.
GetVirtualMachinesV2VmDisk
- Backing
Infos This property is required. List<PiersKarsenbarg. Nutanix. Inputs. Get Virtual Machines V2Vm Disk Backing Info> - Disk
Addresses This property is required. List<PiersKarsenbarg. Nutanix. Inputs. Get Virtual Machines V2Vm Disk Disk Address> - Ext
Id This property is required. string - A globally unique identifier of an instance that is suitable for external consumption.
- Backing
Infos This property is required. []GetVirtual Machines V2Vm Disk Backing Info - Disk
Addresses This property is required. []GetVirtual Machines V2Vm Disk Disk Address - Ext
Id This property is required. string - A globally unique identifier of an instance that is suitable for external consumption.
- backing
Infos This property is required. List<GetVirtual Machines V2Vm Disk Backing Info> - disk
Addresses This property is required. List<GetVirtual Machines V2Vm Disk Disk Address> - ext
Id This property is required. String - A globally unique identifier of an instance that is suitable for external consumption.
- backing
Infos This property is required. GetVirtual Machines V2Vm Disk Backing Info[] - disk
Addresses This property is required. GetVirtual Machines V2Vm Disk Disk Address[] - ext
Id This property is required. string - A globally unique identifier of an instance that is suitable for external consumption.
- backing_
infos This property is required. Sequence[GetVirtual Machines V2Vm Disk Backing Info] - disk_
addresses This property is required. Sequence[GetVirtual Machines V2Vm Disk Disk Address] - ext_
id This property is required. str - A globally unique identifier of an instance that is suitable for external consumption.
- backing
Infos This property is required. List<Property Map> - disk
Addresses This property is required. List<Property Map> - ext
Id This property is required. String - A globally unique identifier of an instance that is suitable for external consumption.
GetVirtualMachinesV2VmDiskBackingInfo
- Adfs
Volume Group References This property is required. List<PiersKarsenbarg. Nutanix. Inputs. Get Virtual Machines V2Vm Disk Backing Info Adfs Volume Group Reference> - Vm
Disks This property is required. List<PiersKarsenbarg. Nutanix. Inputs. Get Virtual Machines V2Vm Disk Backing Info Vm Disk>
- Adfs
Volume Group References This property is required. []GetVirtual Machines V2Vm Disk Backing Info Adfs Volume Group Reference - Vm
Disks This property is required. []GetVirtual Machines V2Vm Disk Backing Info Vm Disk
- adfs
Volume Group References This property is required. List<GetVirtual Machines V2Vm Disk Backing Info Adfs Volume Group Reference> - vm
Disks This property is required. List<GetVirtual Machines V2Vm Disk Backing Info Vm Disk>
- adfs
Volume Group References This property is required. GetVirtual Machines V2Vm Disk Backing Info Adfs Volume Group Reference[] - vm
Disks This property is required. GetVirtual Machines V2Vm Disk Backing Info Vm Disk[]
- adfs_
volume_ group_ references This property is required. Sequence[GetVirtual Machines V2Vm Disk Backing Info Adfs Volume Group Reference] - vm_
disks This property is required. Sequence[GetVirtual Machines V2Vm Disk Backing Info Vm Disk]
- adfs
Volume Group References This property is required. List<Property Map> - vm
Disks This property is required. List<Property Map>
GetVirtualMachinesV2VmDiskBackingInfoAdfsVolumeGroupReference
- Volume
Group Ext Id This property is required. string
- Volume
Group Ext Id This property is required. string
- volume
Group Ext Id This property is required. String
- volume
Group Ext Id This property is required. string
- volume_
group_ ext_ id This property is required. str
- volume
Group Ext Id This property is required. String
GetVirtualMachinesV2VmDiskBackingInfoVmDisk
- Data
Sources This property is required. List<PiersKarsenbarg. Nutanix. Inputs. Get Virtual Machines V2Vm Disk Backing Info Vm Disk Data Source> - Disk
Ext Id This property is required. string - Disk
Size Bytes This property is required. int - Is
Migration In Progress This property is required. bool - Storage
Configs This property is required. List<PiersKarsenbarg. Nutanix. Inputs. Get Virtual Machines V2Vm Disk Backing Info Vm Disk Storage Config> - Storage configuration for VM.
- Storage
Containers This property is required. List<PiersKarsenbarg. Nutanix. Inputs. Get Virtual Machines V2Vm Disk Backing Info Vm Disk Storage Container>
- Data
Sources This property is required. []GetVirtual Machines V2Vm Disk Backing Info Vm Disk Data Source - Disk
Ext Id This property is required. string - Disk
Size Bytes This property is required. int - Is
Migration In Progress This property is required. bool - Storage
Configs This property is required. []GetVirtual Machines V2Vm Disk Backing Info Vm Disk Storage Config - Storage configuration for VM.
- Storage
Containers This property is required. []GetVirtual Machines V2Vm Disk Backing Info Vm Disk Storage Container
- data
Sources This property is required. List<GetVirtual Machines V2Vm Disk Backing Info Vm Disk Data Source> - disk
Ext Id This property is required. String - disk
Size Bytes This property is required. Integer - is
Migration In Progress This property is required. Boolean - storage
Configs This property is required. List<GetVirtual Machines V2Vm Disk Backing Info Vm Disk Storage Config> - Storage configuration for VM.
- storage
Containers This property is required. List<GetVirtual Machines V2Vm Disk Backing Info Vm Disk Storage Container>
- data
Sources This property is required. GetVirtual Machines V2Vm Disk Backing Info Vm Disk Data Source[] - disk
Ext Id This property is required. string - disk
Size Bytes This property is required. number - is
Migration In Progress This property is required. boolean - storage
Configs This property is required. GetVirtual Machines V2Vm Disk Backing Info Vm Disk Storage Config[] - Storage configuration for VM.
- storage
Containers This property is required. GetVirtual Machines V2Vm Disk Backing Info Vm Disk Storage Container[]
- data_
sources This property is required. Sequence[GetVirtual Machines V2Vm Disk Backing Info Vm Disk Data Source] - disk_
ext_ id This property is required. str - disk_
size_ bytes This property is required. int - is_
migration_ in_ progress This property is required. bool - storage_
configs This property is required. Sequence[GetVirtual Machines V2Vm Disk Backing Info Vm Disk Storage Config] - Storage configuration for VM.
- storage_
containers This property is required. Sequence[GetVirtual Machines V2Vm Disk Backing Info Vm Disk Storage Container]
- data
Sources This property is required. List<Property Map> - disk
Ext Id This property is required. String - disk
Size Bytes This property is required. Number - is
Migration In Progress This property is required. Boolean - storage
Configs This property is required. List<Property Map> - Storage configuration for VM.
- storage
Containers This property is required. List<Property Map>
GetVirtualMachinesV2VmDiskBackingInfoVmDiskDataSource
- References
This property is required. List<PiersKarsenbarg. Nutanix. Inputs. Get Virtual Machines V2Vm Disk Backing Info Vm Disk Data Source Reference>
- References
This property is required. []GetVirtual Machines V2Vm Disk Backing Info Vm Disk Data Source Reference
- references
This property is required. List<GetVirtual Machines V2Vm Disk Backing Info Vm Disk Data Source Reference>
- references
This property is required. GetVirtual Machines V2Vm Disk Backing Info Vm Disk Data Source Reference[]
- references
This property is required. Sequence[GetVirtual Machines V2Vm Disk Backing Info Vm Disk Data Source Reference]
- references
This property is required. List<Property Map>
GetVirtualMachinesV2VmDiskBackingInfoVmDiskDataSourceReference
- Image
References This property is required. List<PiersKarsenbarg. Nutanix. Inputs. Get Virtual Machines V2Vm Disk Backing Info Vm Disk Data Source Reference Image Reference> - Vm
Disk References This property is required. List<PiersKarsenbarg. Nutanix. Inputs. Get Virtual Machines V2Vm Disk Backing Info Vm Disk Data Source Reference Vm Disk Reference>
- Image
References This property is required. []GetVirtual Machines V2Vm Disk Backing Info Vm Disk Data Source Reference Image Reference - Vm
Disk References This property is required. []GetVirtual Machines V2Vm Disk Backing Info Vm Disk Data Source Reference Vm Disk Reference
- image
References This property is required. List<GetVirtual Machines V2Vm Disk Backing Info Vm Disk Data Source Reference Image Reference> - vm
Disk References This property is required. List<GetVirtual Machines V2Vm Disk Backing Info Vm Disk Data Source Reference Vm Disk Reference>
- image
References This property is required. GetVirtual Machines V2Vm Disk Backing Info Vm Disk Data Source Reference Image Reference[] - vm
Disk References This property is required. GetVirtual Machines V2Vm Disk Backing Info Vm Disk Data Source Reference Vm Disk Reference[]
- image_
references This property is required. Sequence[GetVirtual Machines V2Vm Disk Backing Info Vm Disk Data Source Reference Image Reference] - vm_
disk_ references This property is required. Sequence[GetVirtual Machines V2Vm Disk Backing Info Vm Disk Data Source Reference Vm Disk Reference]
- image
References This property is required. List<Property Map> - vm
Disk References This property is required. List<Property Map>
GetVirtualMachinesV2VmDiskBackingInfoVmDiskDataSourceReferenceImageReference
- Image
Ext Id This property is required. string
- Image
Ext Id This property is required. string
- image
Ext Id This property is required. String
- image
Ext Id This property is required. string
- image_
ext_ id This property is required. str
- image
Ext Id This property is required. String
GetVirtualMachinesV2VmDiskBackingInfoVmDiskDataSourceReferenceVmDiskReference
- Disk
Addresses This property is required. List<PiersKarsenbarg. Nutanix. Inputs. Get Virtual Machines V2Vm Disk Backing Info Vm Disk Data Source Reference Vm Disk Reference Disk Address> - Disk
Ext Id This property is required. string - Vm
References This property is required. List<PiersKarsenbarg. Nutanix. Inputs. Get Virtual Machines V2Vm Disk Backing Info Vm Disk Data Source Reference Vm Disk Reference Vm Reference>
- Disk
Addresses This property is required. []GetVirtual Machines V2Vm Disk Backing Info Vm Disk Data Source Reference Vm Disk Reference Disk Address - Disk
Ext Id This property is required. string - Vm
References This property is required. []GetVirtual Machines V2Vm Disk Backing Info Vm Disk Data Source Reference Vm Disk Reference Vm Reference
- disk
Addresses This property is required. List<GetVirtual Machines V2Vm Disk Backing Info Vm Disk Data Source Reference Vm Disk Reference Disk Address> - disk
Ext Id This property is required. String - vm
References This property is required. List<GetVirtual Machines V2Vm Disk Backing Info Vm Disk Data Source Reference Vm Disk Reference Vm Reference>
- disk
Addresses This property is required. GetVirtual Machines V2Vm Disk Backing Info Vm Disk Data Source Reference Vm Disk Reference Disk Address[] - disk
Ext Id This property is required. string - vm
References This property is required. GetVirtual Machines V2Vm Disk Backing Info Vm Disk Data Source Reference Vm Disk Reference Vm Reference[]
- disk_
addresses This property is required. Sequence[GetVirtual Machines V2Vm Disk Backing Info Vm Disk Data Source Reference Vm Disk Reference Disk Address] - disk_
ext_ id This property is required. str - vm_
references This property is required. Sequence[GetVirtual Machines V2Vm Disk Backing Info Vm Disk Data Source Reference Vm Disk Reference Vm Reference]
- disk
Addresses This property is required. List<Property Map> - disk
Ext Id This property is required. String - vm
References This property is required. List<Property Map>
GetVirtualMachinesV2VmDiskBackingInfoVmDiskDataSourceReferenceVmDiskReferenceDiskAddress
GetVirtualMachinesV2VmDiskBackingInfoVmDiskDataSourceReferenceVmDiskReferenceVmReference
- Ext
Id This property is required. string - A globally unique identifier of an instance that is suitable for external consumption.
- Ext
Id This property is required. string - A globally unique identifier of an instance that is suitable for external consumption.
- ext
Id This property is required. String - A globally unique identifier of an instance that is suitable for external consumption.
- ext
Id This property is required. string - A globally unique identifier of an instance that is suitable for external consumption.
- ext_
id This property is required. str - A globally unique identifier of an instance that is suitable for external consumption.
- ext
Id This property is required. String - A globally unique identifier of an instance that is suitable for external consumption.
GetVirtualMachinesV2VmDiskBackingInfoVmDiskStorageConfig
- Is
Flash Mode Enabled This property is required. bool
- Is
Flash Mode Enabled This property is required. bool
- is
Flash Mode Enabled This property is required. Boolean
- is
Flash Mode Enabled This property is required. boolean
- is_
flash_ mode_ enabled This property is required. bool
- is
Flash Mode Enabled This property is required. Boolean
GetVirtualMachinesV2VmDiskBackingInfoVmDiskStorageContainer
- Ext
Id This property is required. string - A globally unique identifier of an instance that is suitable for external consumption.
- Ext
Id This property is required. string - A globally unique identifier of an instance that is suitable for external consumption.
- ext
Id This property is required. String - A globally unique identifier of an instance that is suitable for external consumption.
- ext
Id This property is required. string - A globally unique identifier of an instance that is suitable for external consumption.
- ext_
id This property is required. str - A globally unique identifier of an instance that is suitable for external consumption.
- ext
Id This property is required. String - A globally unique identifier of an instance that is suitable for external consumption.
GetVirtualMachinesV2VmDiskDiskAddress
GetVirtualMachinesV2VmGpus
- Device
Id This property is required. int - Ext
Id This property is required. string - A globally unique identifier of an instance that is suitable for external consumption.
- Fraction
This property is required. int - Frame
Buffer Size Bytes This property is required. int - Guest
Driver Version This property is required. string - Mode
This property is required. string - Name
This property is required. string - VM name.
- Num
Virtual Display Heads This property is required. int - Pci
Addresses This property is required. List<PiersKarsenbarg. Nutanix. Inputs. Get Virtual Machines V2Vm Gpus Pci Address> - Vendor
This property is required. string
- Device
Id This property is required. int - Ext
Id This property is required. string - A globally unique identifier of an instance that is suitable for external consumption.
- Fraction
This property is required. int - Frame
Buffer Size Bytes This property is required. int - Guest
Driver Version This property is required. string - Mode
This property is required. string - Name
This property is required. string - VM name.
- Num
Virtual Display Heads This property is required. int - Pci
Addresses This property is required. []GetVirtual Machines V2Vm Gpus Pci Address - Vendor
This property is required. string
- device
Id This property is required. Integer - ext
Id This property is required. String - A globally unique identifier of an instance that is suitable for external consumption.
- fraction
This property is required. Integer - frame
Buffer Size Bytes This property is required. Integer - guest
Driver Version This property is required. String - mode
This property is required. String - name
This property is required. String - VM name.
- num
Virtual Display Heads This property is required. Integer - pci
Addresses This property is required. List<GetVirtual Machines V2Vm Gpus Pci Address> - vendor
This property is required. String
- device
Id This property is required. number - ext
Id This property is required. string - A globally unique identifier of an instance that is suitable for external consumption.
- fraction
This property is required. number - frame
Buffer Size Bytes This property is required. number - guest
Driver Version This property is required. string - mode
This property is required. string - name
This property is required. string - VM name.
- num
Virtual Display Heads This property is required. number - pci
Addresses This property is required. GetVirtual Machines V2Vm Gpus Pci Address[] - vendor
This property is required. string
- device_
id This property is required. int - ext_
id This property is required. str - A globally unique identifier of an instance that is suitable for external consumption.
- fraction
This property is required. int - frame_
buffer_ size_ bytes This property is required. int - guest_
driver_ version This property is required. str - mode
This property is required. str - name
This property is required. str - VM name.
- num_
virtual_ display_ heads This property is required. int - pci_
addresses This property is required. Sequence[GetVirtual Machines V2Vm Gpus Pci Address] - vendor
This property is required. str
- device
Id This property is required. Number - ext
Id This property is required. String - A globally unique identifier of an instance that is suitable for external consumption.
- fraction
This property is required. Number - frame
Buffer Size Bytes This property is required. Number - guest
Driver Version This property is required. String - mode
This property is required. String - name
This property is required. String - VM name.
- num
Virtual Display Heads This property is required. Number - pci
Addresses This property is required. List<Property Map> - vendor
This property is required. String
GetVirtualMachinesV2VmGpusPciAddress
GetVirtualMachinesV2VmGuestCustomization
- Configs
This property is required. List<PiersKarsenbarg. Nutanix. Inputs. Get Virtual Machines V2Vm Guest Customization Config>
- Configs
This property is required. []GetVirtual Machines V2Vm Guest Customization Config
- configs
This property is required. List<GetVirtual Machines V2Vm Guest Customization Config>
- configs
This property is required. GetVirtual Machines V2Vm Guest Customization Config[]
- configs
This property is required. Sequence[GetVirtual Machines V2Vm Guest Customization Config]
- configs
This property is required. List<Property Map>
GetVirtualMachinesV2VmGuestCustomizationConfig
- Cloud
Inits This property is required. List<PiersKarsenbarg. Nutanix. Inputs. Get Virtual Machines V2Vm Guest Customization Config Cloud Init> - Syspreps
This property is required. List<PiersKarsenbarg. Nutanix. Inputs. Get Virtual Machines V2Vm Guest Customization Config Sysprep>
- Cloud
Inits This property is required. []GetVirtual Machines V2Vm Guest Customization Config Cloud Init - Syspreps
This property is required. []GetVirtual Machines V2Vm Guest Customization Config Sysprep
- cloud
Inits This property is required. List<GetVirtual Machines V2Vm Guest Customization Config Cloud Init> - syspreps
This property is required. List<GetVirtual Machines V2Vm Guest Customization Config Sysprep>
- cloud
Inits This property is required. GetVirtual Machines V2Vm Guest Customization Config Cloud Init[] - syspreps
This property is required. GetVirtual Machines V2Vm Guest Customization Config Sysprep[]
- cloud_
inits This property is required. Sequence[GetVirtual Machines V2Vm Guest Customization Config Cloud Init] - syspreps
This property is required. Sequence[GetVirtual Machines V2Vm Guest Customization Config Sysprep]
- cloud
Inits This property is required. List<Property Map> - syspreps
This property is required. List<Property Map>
GetVirtualMachinesV2VmGuestCustomizationConfigCloudInit
- Cloud
Init Scripts This property is required. List<PiersKarsenbarg. Nutanix. Inputs. Get Virtual Machines V2Vm Guest Customization Config Cloud Init Cloud Init Script> - Datasource
Type This property is required. string - Metadata
This property is required. string
- Cloud
Init Scripts This property is required. []GetVirtual Machines V2Vm Guest Customization Config Cloud Init Cloud Init Script - Datasource
Type This property is required. string - Metadata
This property is required. string
- cloud
Init Scripts This property is required. List<GetVirtual Machines V2Vm Guest Customization Config Cloud Init Cloud Init Script> - datasource
Type This property is required. String - metadata
This property is required. String
- cloud
Init Scripts This property is required. GetVirtual Machines V2Vm Guest Customization Config Cloud Init Cloud Init Script[] - datasource
Type This property is required. string - metadata
This property is required. string
- cloud_
init_ scripts This property is required. Sequence[GetVirtual Machines V2Vm Guest Customization Config Cloud Init Cloud Init Script] - datasource_
type This property is required. str - metadata
This property is required. str
- cloud
Init Scripts This property is required. List<Property Map> - datasource
Type This property is required. String - metadata
This property is required. String
GetVirtualMachinesV2VmGuestCustomizationConfigCloudInitCloudInitScript
- Custom
Keys This property is required. List<PiersKarsenbarg. Nutanix. Inputs. Get Virtual Machines V2Vm Guest Customization Config Cloud Init Cloud Init Script Custom Key> - User
Datas This property is required. List<PiersKarsenbarg. Nutanix. Inputs. Get Virtual Machines V2Vm Guest Customization Config Cloud Init Cloud Init Script User Data>
- Custom
Keys This property is required. []GetVirtual Machines V2Vm Guest Customization Config Cloud Init Cloud Init Script Custom Key - User
Datas This property is required. []GetVirtual Machines V2Vm Guest Customization Config Cloud Init Cloud Init Script User Data
- custom
Keys This property is required. List<GetVirtual Machines V2Vm Guest Customization Config Cloud Init Cloud Init Script Custom Key> - user
Datas This property is required. List<GetVirtual Machines V2Vm Guest Customization Config Cloud Init Cloud Init Script User Data>
- custom
Keys This property is required. GetVirtual Machines V2Vm Guest Customization Config Cloud Init Cloud Init Script Custom Key[] - user
Datas This property is required. GetVirtual Machines V2Vm Guest Customization Config Cloud Init Cloud Init Script User Data[]
- custom_
keys This property is required. Sequence[GetVirtual Machines V2Vm Guest Customization Config Cloud Init Cloud Init Script Custom Key] - user_
datas This property is required. Sequence[GetVirtual Machines V2Vm Guest Customization Config Cloud Init Cloud Init Script User Data]
- custom
Keys This property is required. List<Property Map> - user
Datas This property is required. List<Property Map>
GetVirtualMachinesV2VmGuestCustomizationConfigCloudInitCloudInitScriptCustomKey
- Key
Value Pairs This property is required. []GetVirtual Machines V2Vm Guest Customization Config Cloud Init Cloud Init Script Custom Key Key Value Pair
- key
Value Pairs This property is required. List<GetVirtual Machines V2Vm Guest Customization Config Cloud Init Cloud Init Script Custom Key Key Value Pair>
- key
Value Pairs This property is required. GetVirtual Machines V2Vm Guest Customization Config Cloud Init Cloud Init Script Custom Key Key Value Pair[]
- key
Value Pairs This property is required. List<Property Map>
GetVirtualMachinesV2VmGuestCustomizationConfigCloudInitCloudInitScriptCustomKeyKeyValuePair
GetVirtualMachinesV2VmGuestCustomizationConfigCloudInitCloudInitScriptUserData
- Value
This property is required. string
- Value
This property is required. string
- value
This property is required. String
- value
This property is required. string
- value
This property is required. str
- value
This property is required. String
GetVirtualMachinesV2VmGuestCustomizationConfigSysprep
- Install
Type This property is required. string - Sysprep
Scripts This property is required. List<PiersKarsenbarg. Nutanix. Inputs. Get Virtual Machines V2Vm Guest Customization Config Sysprep Sysprep Script>
- Install
Type This property is required. string - Sysprep
Scripts This property is required. []GetVirtual Machines V2Vm Guest Customization Config Sysprep Sysprep Script
- install
Type This property is required. String - sysprep
Scripts This property is required. List<GetVirtual Machines V2Vm Guest Customization Config Sysprep Sysprep Script>
- install
Type This property is required. string - sysprep
Scripts This property is required. GetVirtual Machines V2Vm Guest Customization Config Sysprep Sysprep Script[]
- install_
type This property is required. str - sysprep_
scripts This property is required. Sequence[GetVirtual Machines V2Vm Guest Customization Config Sysprep Sysprep Script]
- install
Type This property is required. String - sysprep
Scripts This property is required. List<Property Map>
GetVirtualMachinesV2VmGuestCustomizationConfigSysprepSysprepScript
- Custom
Key Values This property is required. List<PiersKarsenbarg. Nutanix. Inputs. Get Virtual Machines V2Vm Guest Customization Config Sysprep Sysprep Script Custom Key Value> - Unattend
Xmls This property is required. List<PiersKarsenbarg. Nutanix. Inputs. Get Virtual Machines V2Vm Guest Customization Config Sysprep Sysprep Script Unattend Xml>
- Custom
Key Values This property is required. []GetVirtual Machines V2Vm Guest Customization Config Sysprep Sysprep Script Custom Key Value - Unattend
Xmls This property is required. []GetVirtual Machines V2Vm Guest Customization Config Sysprep Sysprep Script Unattend Xml
- custom
Key Values This property is required. List<GetVirtual Machines V2Vm Guest Customization Config Sysprep Sysprep Script Custom Key Value> - unattend
Xmls This property is required. List<GetVirtual Machines V2Vm Guest Customization Config Sysprep Sysprep Script Unattend Xml>
- custom
Key Values This property is required. GetVirtual Machines V2Vm Guest Customization Config Sysprep Sysprep Script Custom Key Value[] - unattend
Xmls This property is required. GetVirtual Machines V2Vm Guest Customization Config Sysprep Sysprep Script Unattend Xml[]
- custom_
key_ values This property is required. Sequence[GetVirtual Machines V2Vm Guest Customization Config Sysprep Sysprep Script Custom Key Value] - unattend_
xmls This property is required. Sequence[GetVirtual Machines V2Vm Guest Customization Config Sysprep Sysprep Script Unattend Xml]
- custom
Key Values This property is required. List<Property Map> - unattend
Xmls This property is required. List<Property Map>
GetVirtualMachinesV2VmGuestCustomizationConfigSysprepSysprepScriptCustomKeyValue
- Key
Value Pairs This property is required. []GetVirtual Machines V2Vm Guest Customization Config Sysprep Sysprep Script Custom Key Value Key Value Pair
- key
Value Pairs This property is required. List<GetVirtual Machines V2Vm Guest Customization Config Sysprep Sysprep Script Custom Key Value Key Value Pair>
- key
Value Pairs This property is required. GetVirtual Machines V2Vm Guest Customization Config Sysprep Sysprep Script Custom Key Value Key Value Pair[]
- key
Value Pairs This property is required. List<Property Map>
GetVirtualMachinesV2VmGuestCustomizationConfigSysprepSysprepScriptCustomKeyValueKeyValuePair
GetVirtualMachinesV2VmGuestCustomizationConfigSysprepSysprepScriptUnattendXml
- Value
This property is required. string
- Value
This property is required. string
- value
This property is required. String
- value
This property is required. string
- value
This property is required. str
- value
This property is required. String
GetVirtualMachinesV2VmGuestTool
- Available
Version This property is required. string - Capabilities
This property is required. List<string> - Guest
Os Version This property is required. string - Is
Enabled This property is required. bool - Is
Installed This property is required. bool - Is
Iso Inserted This property is required. bool - Is
Reachable This property is required. bool - Is
Vm Mobility Drivers Installed This property is required. bool - Is
Vss Snapshot Capable This property is required. bool - Version
This property is required. string
- Available
Version This property is required. string - Capabilities
This property is required. []string - Guest
Os Version This property is required. string - Is
Enabled This property is required. bool - Is
Installed This property is required. bool - Is
Iso Inserted This property is required. bool - Is
Reachable This property is required. bool - Is
Vm Mobility Drivers Installed This property is required. bool - Is
Vss Snapshot Capable This property is required. bool - Version
This property is required. string
- available
Version This property is required. String - capabilities
This property is required. List<String> - guest
Os Version This property is required. String - is
Enabled This property is required. Boolean - is
Installed This property is required. Boolean - is
Iso Inserted This property is required. Boolean - is
Reachable This property is required. Boolean - is
Vm Mobility Drivers Installed This property is required. Boolean - is
Vss Snapshot Capable This property is required. Boolean - version
This property is required. String
- available
Version This property is required. string - capabilities
This property is required. string[] - guest
Os Version This property is required. string - is
Enabled This property is required. boolean - is
Installed This property is required. boolean - is
Iso Inserted This property is required. boolean - is
Reachable This property is required. boolean - is
Vm Mobility Drivers Installed This property is required. boolean - is
Vss Snapshot Capable This property is required. boolean - version
This property is required. string
- available_
version This property is required. str - capabilities
This property is required. Sequence[str] - guest_
os_ version This property is required. str - is_
enabled This property is required. bool - is_
installed This property is required. bool - is_
iso_ inserted This property is required. bool - is_
reachable This property is required. bool - is_
vm_ mobility_ drivers_ installed This property is required. bool - is_
vss_ snapshot_ capable This property is required. bool - version
This property is required. str
- available
Version This property is required. String - capabilities
This property is required. List<String> - guest
Os Version This property is required. String - is
Enabled This property is required. Boolean - is
Installed This property is required. Boolean - is
Iso Inserted This property is required. Boolean - is
Reachable This property is required. Boolean - is
Vm Mobility Drivers Installed This property is required. Boolean - is
Vss Snapshot Capable This property is required. Boolean - version
This property is required. String
GetVirtualMachinesV2VmHost
- Ext
Id This property is required. string - A globally unique identifier of an instance that is suitable for external consumption.
- Ext
Id This property is required. string - A globally unique identifier of an instance that is suitable for external consumption.
- ext
Id This property is required. String - A globally unique identifier of an instance that is suitable for external consumption.
- ext
Id This property is required. string - A globally unique identifier of an instance that is suitable for external consumption.
- ext_
id This property is required. str - A globally unique identifier of an instance that is suitable for external consumption.
- ext
Id This property is required. String - A globally unique identifier of an instance that is suitable for external consumption.
GetVirtualMachinesV2VmNic
- Backing
Infos This property is required. List<PiersKarsenbarg. Nutanix. Inputs. Get Virtual Machines V2Vm Nic Backing Info> - Ext
Id This property is required. string - A globally unique identifier of an instance that is suitable for external consumption.
- Network
Infos This property is required. List<PiersKarsenbarg. Nutanix. Inputs. Get Virtual Machines V2Vm Nic Network Info>
- Backing
Infos This property is required. []GetVirtual Machines V2Vm Nic Backing Info - Ext
Id This property is required. string - A globally unique identifier of an instance that is suitable for external consumption.
- Network
Infos This property is required. []GetVirtual Machines V2Vm Nic Network Info
- backing
Infos This property is required. List<GetVirtual Machines V2Vm Nic Backing Info> - ext
Id This property is required. String - A globally unique identifier of an instance that is suitable for external consumption.
- network
Infos This property is required. List<GetVirtual Machines V2Vm Nic Network Info>
- backing
Infos This property is required. GetVirtual Machines V2Vm Nic Backing Info[] - ext
Id This property is required. string - A globally unique identifier of an instance that is suitable for external consumption.
- network
Infos This property is required. GetVirtual Machines V2Vm Nic Network Info[]
- backing_
infos This property is required. Sequence[GetVirtual Machines V2Vm Nic Backing Info] - ext_
id This property is required. str - A globally unique identifier of an instance that is suitable for external consumption.
- network_
infos This property is required. Sequence[GetVirtual Machines V2Vm Nic Network Info]
- backing
Infos This property is required. List<Property Map> - ext
Id This property is required. String - A globally unique identifier of an instance that is suitable for external consumption.
- network
Infos This property is required. List<Property Map>
GetVirtualMachinesV2VmNicBackingInfo
- Is
Connected This property is required. bool - Mac
Address This property is required. string - Model
This property is required. string - Num
Queues This property is required. int
- Is
Connected This property is required. bool - Mac
Address This property is required. string - Model
This property is required. string - Num
Queues This property is required. int
- is
Connected This property is required. Boolean - mac
Address This property is required. String - model
This property is required. String - num
Queues This property is required. Integer
- is
Connected This property is required. boolean - mac
Address This property is required. string - model
This property is required. string - num
Queues This property is required. number
- is_
connected This property is required. bool - mac_
address This property is required. str - model
This property is required. str - num_
queues This property is required. int
- is
Connected This property is required. Boolean - mac
Address This property is required. String - model
This property is required. String - num
Queues This property is required. Number
GetVirtualMachinesV2VmNicNetworkInfo
- Ipv4Configs
This property is required. List<PiersKarsenbarg. Nutanix. Inputs. Get Virtual Machines V2Vm Nic Network Info Ipv4Config> - Ipv4Infos
This property is required. List<PiersKarsenbarg. Nutanix. Inputs. Get Virtual Machines V2Vm Nic Network Info Ipv4Info> - Network
Function Chains This property is required. List<PiersKarsenbarg. Nutanix. Inputs. Get Virtual Machines V2Vm Nic Network Info Network Function Chain> - Network
Function Nic Type This property is required. string - Nic
Type This property is required. string - Should
Allow Unknown Macs This property is required. bool - Subnets
This property is required. List<PiersKarsenbarg. Nutanix. Inputs. Get Virtual Machines V2Vm Nic Network Info Subnet> - Trunked
Vlans This property is required. List<int> - Vlan
Mode This property is required. string
- Ipv4Configs
This property is required. []GetVirtual Machines V2Vm Nic Network Info Ipv4Config - Ipv4Infos
This property is required. []GetVirtual Machines V2Vm Nic Network Info Ipv4Info - Network
Function Chains This property is required. []GetVirtual Machines V2Vm Nic Network Info Network Function Chain - Network
Function Nic Type This property is required. string - Nic
Type This property is required. string - Should
Allow Unknown Macs This property is required. bool - Subnets
This property is required. []GetVirtual Machines V2Vm Nic Network Info Subnet - Trunked
Vlans This property is required. []int - Vlan
Mode This property is required. string
- ipv4Configs
This property is required. List<GetVirtual Machines V2Vm Nic Network Info Ipv4Config> - ipv4Infos
This property is required. List<GetVirtual Machines V2Vm Nic Network Info Ipv4Info> - network
Function Chains This property is required. List<GetVirtual Machines V2Vm Nic Network Info Network Function Chain> - network
Function Nic Type This property is required. String - nic
Type This property is required. String - should
Allow Unknown Macs This property is required. Boolean - subnets
This property is required. List<GetVirtual Machines V2Vm Nic Network Info Subnet> - trunked
Vlans This property is required. List<Integer> - vlan
Mode This property is required. String
- ipv4Configs
This property is required. GetVirtual Machines V2Vm Nic Network Info Ipv4Config[] - ipv4Infos
This property is required. GetVirtual Machines V2Vm Nic Network Info Ipv4Info[] - network
Function Chains This property is required. GetVirtual Machines V2Vm Nic Network Info Network Function Chain[] - network
Function Nic Type This property is required. string - nic
Type This property is required. string - should
Allow Unknown Macs This property is required. boolean - subnets
This property is required. GetVirtual Machines V2Vm Nic Network Info Subnet[] - trunked
Vlans This property is required. number[] - vlan
Mode This property is required. string
- ipv4_
configs This property is required. Sequence[GetVirtual Machines V2Vm Nic Network Info Ipv4Config] - ipv4_
infos This property is required. Sequence[GetVirtual Machines V2Vm Nic Network Info Ipv4Info] - network_
function_ chains This property is required. Sequence[GetVirtual Machines V2Vm Nic Network Info Network Function Chain] - network_
function_ nic_ type This property is required. str - nic_
type This property is required. str - should_
allow_ unknown_ macs This property is required. bool - subnets
This property is required. Sequence[GetVirtual Machines V2Vm Nic Network Info Subnet] - trunked_
vlans This property is required. Sequence[int] - vlan_
mode This property is required. str
- ipv4Configs
This property is required. List<Property Map> - ipv4Infos
This property is required. List<Property Map> - network
Function Chains This property is required. List<Property Map> - network
Function Nic Type This property is required. String - nic
Type This property is required. String - should
Allow Unknown Macs This property is required. Boolean - subnets
This property is required. List<Property Map> - trunked
Vlans This property is required. List<Number> - vlan
Mode This property is required. String
GetVirtualMachinesV2VmNicNetworkInfoIpv4Config
- Ip
Addresses This property is required. List<PiersKarsenbarg. Nutanix. Inputs. Get Virtual Machines V2Vm Nic Network Info Ipv4Config Ip Address> - Secondary
Ip Address Lists This property is required. List<PiersKarsenbarg. Nutanix. Inputs. Get Virtual Machines V2Vm Nic Network Info Ipv4Config Secondary Ip Address List> - Should
Assign Ip This property is required. bool
- Ip
Addresses This property is required. []GetVirtual Machines V2Vm Nic Network Info Ipv4Config Ip Address - Secondary
Ip Address Lists This property is required. []GetVirtual Machines V2Vm Nic Network Info Ipv4Config Secondary Ip Address List - Should
Assign Ip This property is required. bool
- ip
Addresses This property is required. List<GetVirtual Machines V2Vm Nic Network Info Ipv4Config Ip Address> - secondary
Ip Address Lists This property is required. List<GetVirtual Machines V2Vm Nic Network Info Ipv4Config Secondary Ip Address List> - should
Assign Ip This property is required. Boolean
- ip
Addresses This property is required. GetVirtual Machines V2Vm Nic Network Info Ipv4Config Ip Address[] - secondary
Ip Address Lists This property is required. GetVirtual Machines V2Vm Nic Network Info Ipv4Config Secondary Ip Address List[] - should
Assign Ip This property is required. boolean
- ip_
addresses This property is required. Sequence[GetVirtual Machines V2Vm Nic Network Info Ipv4Config Ip Address] - secondary_
ip_ address_ lists This property is required. Sequence[GetVirtual Machines V2Vm Nic Network Info Ipv4Config Secondary Ip Address List] - should_
assign_ ip This property is required. bool
- ip
Addresses This property is required. List<Property Map> - secondary
Ip Address Lists This property is required. List<Property Map> - should
Assign Ip This property is required. Boolean
GetVirtualMachinesV2VmNicNetworkInfoIpv4ConfigIpAddress
- Prefix
Length This property is required. int - Value
This property is required. string
- Prefix
Length This property is required. int - Value
This property is required. string
- prefix
Length This property is required. Integer - value
This property is required. String
- prefix
Length This property is required. number - value
This property is required. string
- prefix_
length This property is required. int - value
This property is required. str
- prefix
Length This property is required. Number - value
This property is required. String
GetVirtualMachinesV2VmNicNetworkInfoIpv4ConfigSecondaryIpAddressList
- Prefix
Length This property is required. int - Value
This property is required. string
- Prefix
Length This property is required. int - Value
This property is required. string
- prefix
Length This property is required. Integer - value
This property is required. String
- prefix
Length This property is required. number - value
This property is required. string
- prefix_
length This property is required. int - value
This property is required. str
- prefix
Length This property is required. Number - value
This property is required. String
GetVirtualMachinesV2VmNicNetworkInfoIpv4Info
- Learned
Ip Addresses This property is required. []GetVirtual Machines V2Vm Nic Network Info Ipv4Info Learned Ip Address
- learned
Ip Addresses This property is required. List<GetVirtual Machines V2Vm Nic Network Info Ipv4Info Learned Ip Address>
- learned
Ip Addresses This property is required. GetVirtual Machines V2Vm Nic Network Info Ipv4Info Learned Ip Address[]
- learned_
ip_ addresses This property is required. Sequence[GetVirtual Machines V2Vm Nic Network Info Ipv4Info Learned Ip Address]
- learned
Ip Addresses This property is required. List<Property Map>
GetVirtualMachinesV2VmNicNetworkInfoIpv4InfoLearnedIpAddress
- Prefix
Length This property is required. int - Value
This property is required. string
- Prefix
Length This property is required. int - Value
This property is required. string
- prefix
Length This property is required. Integer - value
This property is required. String
- prefix
Length This property is required. number - value
This property is required. string
- prefix_
length This property is required. int - value
This property is required. str
- prefix
Length This property is required. Number - value
This property is required. String
GetVirtualMachinesV2VmNicNetworkInfoNetworkFunctionChain
- Ext
Id This property is required. string - A globally unique identifier of an instance that is suitable for external consumption.
- Ext
Id This property is required. string - A globally unique identifier of an instance that is suitable for external consumption.
- ext
Id This property is required. String - A globally unique identifier of an instance that is suitable for external consumption.
- ext
Id This property is required. string - A globally unique identifier of an instance that is suitable for external consumption.
- ext_
id This property is required. str - A globally unique identifier of an instance that is suitable for external consumption.
- ext
Id This property is required. String - A globally unique identifier of an instance that is suitable for external consumption.
GetVirtualMachinesV2VmNicNetworkInfoSubnet
- Ext
Id This property is required. string - A globally unique identifier of an instance that is suitable for external consumption.
- Ext
Id This property is required. string - A globally unique identifier of an instance that is suitable for external consumption.
- ext
Id This property is required. String - A globally unique identifier of an instance that is suitable for external consumption.
- ext
Id This property is required. string - A globally unique identifier of an instance that is suitable for external consumption.
- ext_
id This property is required. str - A globally unique identifier of an instance that is suitable for external consumption.
- ext
Id This property is required. String - A globally unique identifier of an instance that is suitable for external consumption.
GetVirtualMachinesV2VmOwnershipInfo
- Owners
This property is required. List<PiersKarsenbarg. Nutanix. Inputs. Get Virtual Machines V2Vm Ownership Info Owner>
- Owners
This property is required. []GetVirtual Machines V2Vm Ownership Info Owner
- owners
This property is required. List<GetVirtual Machines V2Vm Ownership Info Owner>
- owners
This property is required. GetVirtual Machines V2Vm Ownership Info Owner[]
- owners
This property is required. Sequence[GetVirtual Machines V2Vm Ownership Info Owner]
- owners
This property is required. List<Property Map>
GetVirtualMachinesV2VmOwnershipInfoOwner
- Ext
Id This property is required. string - A globally unique identifier of an instance that is suitable for external consumption.
- Ext
Id This property is required. string - A globally unique identifier of an instance that is suitable for external consumption.
- ext
Id This property is required. String - A globally unique identifier of an instance that is suitable for external consumption.
- ext
Id This property is required. string - A globally unique identifier of an instance that is suitable for external consumption.
- ext_
id This property is required. str - A globally unique identifier of an instance that is suitable for external consumption.
- ext
Id This property is required. String - A globally unique identifier of an instance that is suitable for external consumption.
GetVirtualMachinesV2VmProtectionPolicyState
- Policies
This property is required. List<PiersKarsenbarg. Nutanix. Inputs. Get Virtual Machines V2Vm Protection Policy State Policy>
- Policies
This property is required. []GetVirtual Machines V2Vm Protection Policy State Policy
- policies
This property is required. List<GetVirtual Machines V2Vm Protection Policy State Policy>
- policies
This property is required. GetVirtual Machines V2Vm Protection Policy State Policy[]
- policies
This property is required. Sequence[GetVirtual Machines V2Vm Protection Policy State Policy]
- policies
This property is required. List<Property Map>
GetVirtualMachinesV2VmProtectionPolicyStatePolicy
- Ext
Id This property is required. string - A globally unique identifier of an instance that is suitable for external consumption.
- Ext
Id This property is required. string - A globally unique identifier of an instance that is suitable for external consumption.
- ext
Id This property is required. String - A globally unique identifier of an instance that is suitable for external consumption.
- ext
Id This property is required. string - A globally unique identifier of an instance that is suitable for external consumption.
- ext_
id This property is required. str - A globally unique identifier of an instance that is suitable for external consumption.
- ext
Id This property is required. String - A globally unique identifier of an instance that is suitable for external consumption.
GetVirtualMachinesV2VmSerialPort
- Ext
Id This property is required. string - A globally unique identifier of an instance that is suitable for external consumption.
- Index
This property is required. int - Is
Connected This property is required. bool
- Ext
Id This property is required. string - A globally unique identifier of an instance that is suitable for external consumption.
- Index
This property is required. int - Is
Connected This property is required. bool
- ext
Id This property is required. String - A globally unique identifier of an instance that is suitable for external consumption.
- index
This property is required. Integer - is
Connected This property is required. Boolean
- ext
Id This property is required. string - A globally unique identifier of an instance that is suitable for external consumption.
- index
This property is required. number - is
Connected This property is required. boolean
- ext_
id This property is required. str - A globally unique identifier of an instance that is suitable for external consumption.
- index
This property is required. int - is_
connected This property is required. bool
- ext
Id This property is required. String - A globally unique identifier of an instance that is suitable for external consumption.
- index
This property is required. Number - is
Connected This property is required. Boolean
GetVirtualMachinesV2VmSource
- Entity
Type This property is required. string - Ext
Id This property is required. string - A globally unique identifier of an instance that is suitable for external consumption.
- Entity
Type This property is required. string - Ext
Id This property is required. string - A globally unique identifier of an instance that is suitable for external consumption.
- entity
Type This property is required. String - ext
Id This property is required. String - A globally unique identifier of an instance that is suitable for external consumption.
- entity
Type This property is required. string - ext
Id This property is required. string - A globally unique identifier of an instance that is suitable for external consumption.
- entity_
type This property is required. str - ext_
id This property is required. str - A globally unique identifier of an instance that is suitable for external consumption.
- entity
Type This property is required. String - ext
Id This property is required. String - A globally unique identifier of an instance that is suitable for external consumption.
GetVirtualMachinesV2VmStorageConfig
- Is
Flash Mode Enabled This property is required. bool - Qos
Configs This property is required. List<PiersKarsenbarg. Nutanix. Inputs. Get Virtual Machines V2Vm Storage Config Qos Config>
- Is
Flash Mode Enabled This property is required. bool - Qos
Configs This property is required. []GetVirtual Machines V2Vm Storage Config Qos Config
- is
Flash Mode Enabled This property is required. Boolean - qos
Configs This property is required. List<GetVirtual Machines V2Vm Storage Config Qos Config>
- is
Flash Mode Enabled This property is required. boolean - qos
Configs This property is required. GetVirtual Machines V2Vm Storage Config Qos Config[]
- is_
flash_ mode_ enabled This property is required. bool - qos_
configs This property is required. Sequence[GetVirtual Machines V2Vm Storage Config Qos Config]
- is
Flash Mode Enabled This property is required. Boolean - qos
Configs This property is required. List<Property Map>
GetVirtualMachinesV2VmStorageConfigQosConfig
- Throttled
Iops This property is required. int
- Throttled
Iops This property is required. int
- throttled
Iops This property is required. Integer
- throttled
Iops This property is required. number
- throttled_
iops This property is required. int
- throttled
Iops This property is required. Number
GetVirtualMachinesV2VmVtpmConfig
- Is
Vtpm Enabled This property is required. bool - Version
This property is required. string
- Is
Vtpm Enabled This property is required. bool - Version
This property is required. string
- is
Vtpm Enabled This property is required. Boolean - version
This property is required. String
- is
Vtpm Enabled This property is required. boolean - version
This property is required. string
- is_
vtpm_ enabled This property is required. bool - version
This property is required. str
- is
Vtpm Enabled This property is required. Boolean - version
This property is required. String
Package Details
- Repository
- nutanix pierskarsenbarg/pulumi-nutanix
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
nutanix
Terraform Provider.