published on Tuesday, May 26, 2026 by Piers Karsenbarg
published on Tuesday, May 26, 2026 by Piers Karsenbarg
Creates an OVA using the provided request body. The name and source are mandatory fields to create an OVA.
Create OvaV2 Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new OvaV2(name: string, args: OvaV2Args, opts?: CustomResourceOptions);@overload
def OvaV2(resource_name: str,
args: OvaV2Args,
opts: Optional[ResourceOptions] = None)
@overload
def OvaV2(resource_name: str,
opts: Optional[ResourceOptions] = None,
sources: Optional[Sequence[OvaV2SourceArgs]] = None,
checksum: Optional[OvaV2ChecksumArgs] = None,
cluster_location_ext_ids: Optional[Sequence[str]] = None,
disk_format: Optional[str] = None,
name: Optional[str] = None)func NewOvaV2(ctx *Context, name string, args OvaV2Args, opts ...ResourceOption) (*OvaV2, error)public OvaV2(string name, OvaV2Args args, CustomResourceOptions? opts = null)type: nutanix:OvaV2
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
resource "nutanix_ovav2" "name" {
# resource properties
}Parameters
- name string
- The unique name of the resource.
- args OvaV2Args
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args OvaV2Args
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args OvaV2Args
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args OvaV2Args
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args OvaV2Args
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var ovaV2Resource = new Nutanix.OvaV2("ovaV2Resource", new()
{
Sources = new[]
{
new Nutanix.Inputs.OvaV2SourceArgs
{
ObjectLiteSources = new[]
{
new Nutanix.Inputs.OvaV2SourceObjectLiteSourceArgs
{
Key = "string",
},
},
OvaUrlSources = new[]
{
new Nutanix.Inputs.OvaV2SourceOvaUrlSourceArgs
{
Url = "string",
BasicAuths = new[]
{
new Nutanix.Inputs.OvaV2SourceOvaUrlSourceBasicAuthArgs
{
Password = "string",
Username = "string",
},
},
ShouldAllowInsecureUrl = false,
},
},
OvaVmSources = new[]
{
new Nutanix.Inputs.OvaV2SourceOvaVmSourceArgs
{
DiskFileFormat = "string",
VmExtId = "string",
},
},
},
},
Checksum = new Nutanix.Inputs.OvaV2ChecksumArgs
{
OvaSha1Checksums = new[]
{
new Nutanix.Inputs.OvaV2ChecksumOvaSha1ChecksumArgs
{
HexDigest = "string",
},
},
OvaSha256Checksums = new[]
{
new Nutanix.Inputs.OvaV2ChecksumOvaSha256ChecksumArgs
{
HexDigest = "string",
},
},
},
ClusterLocationExtIds = new[]
{
"string",
},
DiskFormat = "string",
Name = "string",
});
example, err := nutanix.NewOvaV2(ctx, "ovaV2Resource", &nutanix.OvaV2Args{
Sources: nutanix.OvaV2SourceArray{
&nutanix.OvaV2SourceArgs{
ObjectLiteSources: nutanix.OvaV2SourceObjectLiteSourceArray{
&nutanix.OvaV2SourceObjectLiteSourceArgs{
Key: pulumi.String("string"),
},
},
OvaUrlSources: nutanix.OvaV2SourceOvaUrlSourceArray{
&nutanix.OvaV2SourceOvaUrlSourceArgs{
Url: pulumi.String("string"),
BasicAuths: nutanix.OvaV2SourceOvaUrlSourceBasicAuthArray{
&nutanix.OvaV2SourceOvaUrlSourceBasicAuthArgs{
Password: pulumi.String("string"),
Username: pulumi.String("string"),
},
},
ShouldAllowInsecureUrl: pulumi.Bool(false),
},
},
OvaVmSources: nutanix.OvaV2SourceOvaVmSourceArray{
&nutanix.OvaV2SourceOvaVmSourceArgs{
DiskFileFormat: pulumi.String("string"),
VmExtId: pulumi.String("string"),
},
},
},
},
Checksum: &nutanix.OvaV2ChecksumArgs{
OvaSha1Checksums: nutanix.OvaV2ChecksumOvaSha1ChecksumArray{
&nutanix.OvaV2ChecksumOvaSha1ChecksumArgs{
HexDigest: pulumi.String("string"),
},
},
OvaSha256Checksums: nutanix.OvaV2ChecksumOvaSha256ChecksumArray{
&nutanix.OvaV2ChecksumOvaSha256ChecksumArgs{
HexDigest: pulumi.String("string"),
},
},
},
ClusterLocationExtIds: pulumi.StringArray{
pulumi.String("string"),
},
DiskFormat: pulumi.String("string"),
Name: pulumi.String("string"),
})
resource "nutanix_ovav2" "ovaV2Resource" {
sources {
object_lite_sources {
key = "string"
}
ova_url_sources {
url = "string"
basic_auths {
password = "string"
username = "string"
}
should_allow_insecure_url = false
}
ova_vm_sources {
disk_file_format = "string"
vm_ext_id = "string"
}
}
checksum = {
ova_sha1_checksums = [{
"hexDigest" = "string"
}]
ova_sha256_checksums = [{
"hexDigest" = "string"
}]
}
cluster_location_ext_ids = ["string"]
disk_format = "string"
name = "string"
}
var ovaV2Resource = new OvaV2("ovaV2Resource", OvaV2Args.builder()
.sources(OvaV2SourceArgs.builder()
.objectLiteSources(OvaV2SourceObjectLiteSourceArgs.builder()
.key("string")
.build())
.ovaUrlSources(OvaV2SourceOvaUrlSourceArgs.builder()
.url("string")
.basicAuths(OvaV2SourceOvaUrlSourceBasicAuthArgs.builder()
.password("string")
.username("string")
.build())
.shouldAllowInsecureUrl(false)
.build())
.ovaVmSources(OvaV2SourceOvaVmSourceArgs.builder()
.diskFileFormat("string")
.vmExtId("string")
.build())
.build())
.checksum(OvaV2ChecksumArgs.builder()
.ovaSha1Checksums(OvaV2ChecksumOvaSha1ChecksumArgs.builder()
.hexDigest("string")
.build())
.ovaSha256Checksums(OvaV2ChecksumOvaSha256ChecksumArgs.builder()
.hexDigest("string")
.build())
.build())
.clusterLocationExtIds("string")
.diskFormat("string")
.name("string")
.build());
ova_v2_resource = nutanix.OvaV2("ovaV2Resource",
sources=[{
"object_lite_sources": [{
"key": "string",
}],
"ova_url_sources": [{
"url": "string",
"basic_auths": [{
"password": "string",
"username": "string",
}],
"should_allow_insecure_url": False,
}],
"ova_vm_sources": [{
"disk_file_format": "string",
"vm_ext_id": "string",
}],
}],
checksum={
"ova_sha1_checksums": [{
"hex_digest": "string",
}],
"ova_sha256_checksums": [{
"hex_digest": "string",
}],
},
cluster_location_ext_ids=["string"],
disk_format="string",
name="string")
const ovaV2Resource = new nutanix.OvaV2("ovaV2Resource", {
sources: [{
objectLiteSources: [{
key: "string",
}],
ovaUrlSources: [{
url: "string",
basicAuths: [{
password: "string",
username: "string",
}],
shouldAllowInsecureUrl: false,
}],
ovaVmSources: [{
diskFileFormat: "string",
vmExtId: "string",
}],
}],
checksum: {
ovaSha1Checksums: [{
hexDigest: "string",
}],
ovaSha256Checksums: [{
hexDigest: "string",
}],
},
clusterLocationExtIds: ["string"],
diskFormat: "string",
name: "string",
});
type: nutanix:OvaV2
properties:
checksum:
ovaSha1Checksums:
- hexDigest: string
ovaSha256Checksums:
- hexDigest: string
clusterLocationExtIds:
- string
diskFormat: string
name: string
sources:
- objectLiteSources:
- key: string
ovaUrlSources:
- basicAuths:
- password: string
username: string
shouldAllowInsecureUrl: false
url: string
ovaVmSources:
- diskFileFormat: string
vmExtId: string
OvaV2 Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The OvaV2 resource accepts the following input properties:
- Sources
List<Piers
Karsenbarg. Nutanix. Inputs. Ova V2Source> - -(Required) Source of the created OVA file. The source can either be a VM, URL, or a local upload.
- Checksum
Piers
Karsenbarg. Nutanix. Inputs. Ova V2Checksum - -(Optional) The checksum of an OVA.
- Cluster
Location List<string>Ext Ids - -(Optional) List of cluster identifiers where the OVA is located. This field is required when creating an OVA from URL or Objects lite upload. its
mandatorywhen creating an OVA from URL or object lite source . - Disk
Format string - -(Optional) Disk format of an OVA. |ENUM |Description | |---|---| | VMDK | The VMDK disk format of an OVA. | | QCOW2 | The QCOW2 disk format of an OVA. |
- Name string
- -(Required) Name of the OVA.
- Sources
[]Ova
V2Source Args - -(Required) Source of the created OVA file. The source can either be a VM, URL, or a local upload.
- Checksum
Ova
V2Checksum Args - -(Optional) The checksum of an OVA.
- Cluster
Location []stringExt Ids - -(Optional) List of cluster identifiers where the OVA is located. This field is required when creating an OVA from URL or Objects lite upload. its
mandatorywhen creating an OVA from URL or object lite source . - Disk
Format string - -(Optional) Disk format of an OVA. |ENUM |Description | |---|---| | VMDK | The VMDK disk format of an OVA. | | QCOW2 | The QCOW2 disk format of an OVA. |
- Name string
- -(Required) Name of the OVA.
- sources list(object)
- -(Required) Source of the created OVA file. The source can either be a VM, URL, or a local upload.
- checksum object
- -(Optional) The checksum of an OVA.
- cluster_
location_ list(string)ext_ ids - -(Optional) List of cluster identifiers where the OVA is located. This field is required when creating an OVA from URL or Objects lite upload. its
mandatorywhen creating an OVA from URL or object lite source . - disk_
format string - -(Optional) Disk format of an OVA. |ENUM |Description | |---|---| | VMDK | The VMDK disk format of an OVA. | | QCOW2 | The QCOW2 disk format of an OVA. |
- name string
- -(Required) Name of the OVA.
- sources
List<Ova
V2Source> - -(Required) Source of the created OVA file. The source can either be a VM, URL, or a local upload.
- checksum
Ova
V2Checksum - -(Optional) The checksum of an OVA.
- cluster
Location List<String>Ext Ids - -(Optional) List of cluster identifiers where the OVA is located. This field is required when creating an OVA from URL or Objects lite upload. its
mandatorywhen creating an OVA from URL or object lite source . - disk
Format String - -(Optional) Disk format of an OVA. |ENUM |Description | |---|---| | VMDK | The VMDK disk format of an OVA. | | QCOW2 | The QCOW2 disk format of an OVA. |
- name String
- -(Required) Name of the OVA.
- sources
Ova
V2Source[] - -(Required) Source of the created OVA file. The source can either be a VM, URL, or a local upload.
- checksum
Ova
V2Checksum - -(Optional) The checksum of an OVA.
- cluster
Location string[]Ext Ids - -(Optional) List of cluster identifiers where the OVA is located. This field is required when creating an OVA from URL or Objects lite upload. its
mandatorywhen creating an OVA from URL or object lite source . - disk
Format string - -(Optional) Disk format of an OVA. |ENUM |Description | |---|---| | VMDK | The VMDK disk format of an OVA. | | QCOW2 | The QCOW2 disk format of an OVA. |
- name string
- -(Required) Name of the OVA.
- sources
Sequence[Ova
V2Source Args] - -(Required) Source of the created OVA file. The source can either be a VM, URL, or a local upload.
- checksum
Ova
V2Checksum Args - -(Optional) The checksum of an OVA.
- cluster_
location_ Sequence[str]ext_ ids - -(Optional) List of cluster identifiers where the OVA is located. This field is required when creating an OVA from URL or Objects lite upload. its
mandatorywhen creating an OVA from URL or object lite source . - disk_
format str - -(Optional) Disk format of an OVA. |ENUM |Description | |---|---| | VMDK | The VMDK disk format of an OVA. | | QCOW2 | The QCOW2 disk format of an OVA. |
- name str
- -(Required) Name of the OVA.
- sources List<Property Map>
- -(Required) Source of the created OVA file. The source can either be a VM, URL, or a local upload.
- checksum Property Map
- -(Optional) The checksum of an OVA.
- cluster
Location List<String>Ext Ids - -(Optional) List of cluster identifiers where the OVA is located. This field is required when creating an OVA from URL or Objects lite upload. its
mandatorywhen creating an OVA from URL or object lite source . - disk
Format String - -(Optional) Disk format of an OVA. |ENUM |Description | |---|---| | VMDK | The VMDK disk format of an OVA. | | QCOW2 | The QCOW2 disk format of an OVA. |
- name String
- -(Required) Name of the OVA.
Outputs
All input properties are implicitly available as output properties. Additionally, the OvaV2 resource produces the following output properties:
- Create
Time string - Created
Bies List<PiersKarsenbarg. Nutanix. Outputs. Ova V2Created By> - -(Optional) Information of the user.
- Ext
Id string - Id string
- The provider-assigned unique ID for this managed resource.
- Last
Update stringTime - Links
List<Piers
Karsenbarg. Nutanix. Outputs. Ova V2Link> - Parent
Vm string - Size
Bytes int - Tenant
Id string - Vm
Configs List<PiersKarsenbarg. Nutanix. Outputs. Ova V2Vm Config> - -(Optional) VM configuration.
- Create
Time string - Created
Bies []OvaV2Created By - -(Optional) Information of the user.
- Ext
Id string - Id string
- The provider-assigned unique ID for this managed resource.
- Last
Update stringTime - Links
[]Ova
V2Link - Parent
Vm string - Size
Bytes int - Tenant
Id string - Vm
Configs []OvaV2Vm Config - -(Optional) VM configuration.
- create_
time string - created_
bies list(object) - -(Optional) Information of the user.
- ext_
id string - id string
- The provider-assigned unique ID for this managed resource.
- last_
update_ stringtime - links list(object)
- parent_
vm string - size_
bytes number - tenant_
id string - vm_
configs list(object) - -(Optional) VM configuration.
- create
Time String - created
Bies List<OvaV2Created By> - -(Optional) Information of the user.
- ext
Id String - id String
- The provider-assigned unique ID for this managed resource.
- last
Update StringTime - links
List<Ova
V2Link> - parent
Vm String - size
Bytes Integer - tenant
Id String - vm
Configs List<OvaV2Vm Config> - -(Optional) VM configuration.
- create
Time string - created
Bies OvaV2Created By[] - -(Optional) Information of the user.
- ext
Id string - id string
- The provider-assigned unique ID for this managed resource.
- last
Update stringTime - links
Ova
V2Link[] - parent
Vm string - size
Bytes number - tenant
Id string - vm
Configs OvaV2Vm Config[] - -(Optional) VM configuration.
- create_
time str - created_
bies Sequence[OvaV2Created By] - -(Optional) Information of the user.
- ext_
id str - id str
- The provider-assigned unique ID for this managed resource.
- last_
update_ strtime - links
Sequence[Ova
V2Link] - parent_
vm str - size_
bytes int - tenant_
id str - vm_
configs Sequence[OvaV2Vm Config] - -(Optional) VM configuration.
- create
Time String - created
Bies List<Property Map> - -(Optional) Information of the user.
- ext
Id String - id String
- The provider-assigned unique ID for this managed resource.
- last
Update StringTime - links List<Property Map>
- parent
Vm String - size
Bytes Number - tenant
Id String - vm
Configs List<Property Map> - -(Optional) VM configuration.
Look up Existing OvaV2 Resource
Get an existing OvaV2 resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: OvaV2State, opts?: CustomResourceOptions): OvaV2@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
checksum: Optional[OvaV2ChecksumArgs] = None,
cluster_location_ext_ids: Optional[Sequence[str]] = None,
create_time: Optional[str] = None,
created_bies: Optional[Sequence[OvaV2CreatedByArgs]] = None,
disk_format: Optional[str] = None,
ext_id: Optional[str] = None,
last_update_time: Optional[str] = None,
links: Optional[Sequence[OvaV2LinkArgs]] = None,
name: Optional[str] = None,
parent_vm: Optional[str] = None,
size_bytes: Optional[int] = None,
sources: Optional[Sequence[OvaV2SourceArgs]] = None,
tenant_id: Optional[str] = None,
vm_configs: Optional[Sequence[OvaV2VmConfigArgs]] = None) -> OvaV2func GetOvaV2(ctx *Context, name string, id IDInput, state *OvaV2State, opts ...ResourceOption) (*OvaV2, error)public static OvaV2 Get(string name, Input<string> id, OvaV2State? state, CustomResourceOptions? opts = null)public static OvaV2 get(String name, Output<String> id, OvaV2State state, CustomResourceOptions options)resources: _: type: nutanix:OvaV2 get: id: ${id}import {
to = nutanix_ovav2.example
id = "${id}"
}
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Checksum
Piers
Karsenbarg. Nutanix. Inputs. Ova V2Checksum - -(Optional) The checksum of an OVA.
- Cluster
Location List<string>Ext Ids - -(Optional) List of cluster identifiers where the OVA is located. This field is required when creating an OVA from URL or Objects lite upload. its
mandatorywhen creating an OVA from URL or object lite source . - Create
Time string - Created
Bies List<PiersKarsenbarg. Nutanix. Inputs. Ova V2Created By> - -(Optional) Information of the user.
- Disk
Format string - -(Optional) Disk format of an OVA. |ENUM |Description | |---|---| | VMDK | The VMDK disk format of an OVA. | | QCOW2 | The QCOW2 disk format of an OVA. |
- Ext
Id string - Last
Update stringTime - Links
List<Piers
Karsenbarg. Nutanix. Inputs. Ova V2Link> - Name string
- -(Required) Name of the OVA.
- Parent
Vm string - Size
Bytes int - Sources
List<Piers
Karsenbarg. Nutanix. Inputs. Ova V2Source> - -(Required) Source of the created OVA file. The source can either be a VM, URL, or a local upload.
- Tenant
Id string - Vm
Configs List<PiersKarsenbarg. Nutanix. Inputs. Ova V2Vm Config> - -(Optional) VM configuration.
- Checksum
Ova
V2Checksum Args - -(Optional) The checksum of an OVA.
- Cluster
Location []stringExt Ids - -(Optional) List of cluster identifiers where the OVA is located. This field is required when creating an OVA from URL or Objects lite upload. its
mandatorywhen creating an OVA from URL or object lite source . - Create
Time string - Created
Bies []OvaV2Created By Args - -(Optional) Information of the user.
- Disk
Format string - -(Optional) Disk format of an OVA. |ENUM |Description | |---|---| | VMDK | The VMDK disk format of an OVA. | | QCOW2 | The QCOW2 disk format of an OVA. |
- Ext
Id string - Last
Update stringTime - Links
[]Ova
V2Link Args - Name string
- -(Required) Name of the OVA.
- Parent
Vm string - Size
Bytes int - Sources
[]Ova
V2Source Args - -(Required) Source of the created OVA file. The source can either be a VM, URL, or a local upload.
- Tenant
Id string - Vm
Configs []OvaV2Vm Config Args - -(Optional) VM configuration.
- checksum object
- -(Optional) The checksum of an OVA.
- cluster_
location_ list(string)ext_ ids - -(Optional) List of cluster identifiers where the OVA is located. This field is required when creating an OVA from URL or Objects lite upload. its
mandatorywhen creating an OVA from URL or object lite source . - create_
time string - created_
bies list(object) - -(Optional) Information of the user.
- disk_
format string - -(Optional) Disk format of an OVA. |ENUM |Description | |---|---| | VMDK | The VMDK disk format of an OVA. | | QCOW2 | The QCOW2 disk format of an OVA. |
- ext_
id string - last_
update_ stringtime - links list(object)
- name string
- -(Required) Name of the OVA.
- parent_
vm string - size_
bytes number - sources list(object)
- -(Required) Source of the created OVA file. The source can either be a VM, URL, or a local upload.
- tenant_
id string - vm_
configs list(object) - -(Optional) VM configuration.
- checksum
Ova
V2Checksum - -(Optional) The checksum of an OVA.
- cluster
Location List<String>Ext Ids - -(Optional) List of cluster identifiers where the OVA is located. This field is required when creating an OVA from URL or Objects lite upload. its
mandatorywhen creating an OVA from URL or object lite source . - create
Time String - created
Bies List<OvaV2Created By> - -(Optional) Information of the user.
- disk
Format String - -(Optional) Disk format of an OVA. |ENUM |Description | |---|---| | VMDK | The VMDK disk format of an OVA. | | QCOW2 | The QCOW2 disk format of an OVA. |
- ext
Id String - last
Update StringTime - links
List<Ova
V2Link> - name String
- -(Required) Name of the OVA.
- parent
Vm String - size
Bytes Integer - sources
List<Ova
V2Source> - -(Required) Source of the created OVA file. The source can either be a VM, URL, or a local upload.
- tenant
Id String - vm
Configs List<OvaV2Vm Config> - -(Optional) VM configuration.
- checksum
Ova
V2Checksum - -(Optional) The checksum of an OVA.
- cluster
Location string[]Ext Ids - -(Optional) List of cluster identifiers where the OVA is located. This field is required when creating an OVA from URL or Objects lite upload. its
mandatorywhen creating an OVA from URL or object lite source . - create
Time string - created
Bies OvaV2Created By[] - -(Optional) Information of the user.
- disk
Format string - -(Optional) Disk format of an OVA. |ENUM |Description | |---|---| | VMDK | The VMDK disk format of an OVA. | | QCOW2 | The QCOW2 disk format of an OVA. |
- ext
Id string - last
Update stringTime - links
Ova
V2Link[] - name string
- -(Required) Name of the OVA.
- parent
Vm string - size
Bytes number - sources
Ova
V2Source[] - -(Required) Source of the created OVA file. The source can either be a VM, URL, or a local upload.
- tenant
Id string - vm
Configs OvaV2Vm Config[] - -(Optional) VM configuration.
- checksum
Ova
V2Checksum Args - -(Optional) The checksum of an OVA.
- cluster_
location_ Sequence[str]ext_ ids - -(Optional) List of cluster identifiers where the OVA is located. This field is required when creating an OVA from URL or Objects lite upload. its
mandatorywhen creating an OVA from URL or object lite source . - create_
time str - created_
bies Sequence[OvaV2Created By Args] - -(Optional) Information of the user.
- disk_
format str - -(Optional) Disk format of an OVA. |ENUM |Description | |---|---| | VMDK | The VMDK disk format of an OVA. | | QCOW2 | The QCOW2 disk format of an OVA. |
- ext_
id str - last_
update_ strtime - links
Sequence[Ova
V2Link Args] - name str
- -(Required) Name of the OVA.
- parent_
vm str - size_
bytes int - sources
Sequence[Ova
V2Source Args] - -(Required) Source of the created OVA file. The source can either be a VM, URL, or a local upload.
- tenant_
id str - vm_
configs Sequence[OvaV2Vm Config Args] - -(Optional) VM configuration.
- checksum Property Map
- -(Optional) The checksum of an OVA.
- cluster
Location List<String>Ext Ids - -(Optional) List of cluster identifiers where the OVA is located. This field is required when creating an OVA from URL or Objects lite upload. its
mandatorywhen creating an OVA from URL or object lite source . - create
Time String - created
Bies List<Property Map> - -(Optional) Information of the user.
- disk
Format String - -(Optional) Disk format of an OVA. |ENUM |Description | |---|---| | VMDK | The VMDK disk format of an OVA. | | QCOW2 | The QCOW2 disk format of an OVA. |
- ext
Id String - last
Update StringTime - links List<Property Map>
- name String
- -(Required) Name of the OVA.
- parent
Vm String - size
Bytes Number - sources List<Property Map>
- -(Required) Source of the created OVA file. The source can either be a VM, URL, or a local upload.
- tenant
Id String - vm
Configs List<Property Map> - -(Optional) VM configuration.
Supporting Types
OvaV2Checksum, OvaV2ChecksumArgs
- Ova
Sha1Checksums List<PiersKarsenbarg. Nutanix. Inputs. Ova V2Checksum Ova Sha1Checksum> - -(Optional) The SHA1 checksum of the OVA file.
- Ova
Sha256Checksums List<PiersKarsenbarg. Nutanix. Inputs. Ova V2Checksum Ova Sha256Checksum> - -(Optional) The SHA256 checksum of the OVA file.
- Ova
Sha1Checksums []OvaV2Checksum Ova Sha1Checksum - -(Optional) The SHA1 checksum of the OVA file.
- Ova
Sha256Checksums []OvaV2Checksum Ova Sha256Checksum - -(Optional) The SHA256 checksum of the OVA file.
- ova_
sha1_ list(object)checksums - -(Optional) The SHA1 checksum of the OVA file.
- ova_
sha256_ list(object)checksums - -(Optional) The SHA256 checksum of the OVA file.
- ova
Sha1Checksums List<OvaV2Checksum Ova Sha1Checksum> - -(Optional) The SHA1 checksum of the OVA file.
- ova
Sha256Checksums List<OvaV2Checksum Ova Sha256Checksum> - -(Optional) The SHA256 checksum of the OVA file.
- ova
Sha1Checksums OvaV2Checksum Ova Sha1Checksum[] - -(Optional) The SHA1 checksum of the OVA file.
- ova
Sha256Checksums OvaV2Checksum Ova Sha256Checksum[] - -(Optional) The SHA256 checksum of the OVA file.
- ova_
sha1_ Sequence[Ovachecksums V2Checksum Ova Sha1Checksum] - -(Optional) The SHA1 checksum of the OVA file.
- ova_
sha256_ Sequence[Ovachecksums V2Checksum Ova Sha256Checksum] - -(Optional) The SHA256 checksum of the OVA file.
- ova
Sha1Checksums List<Property Map> - -(Optional) The SHA1 checksum of the OVA file.
- ova
Sha256Checksums List<Property Map> - -(Optional) The SHA256 checksum of the OVA file.
OvaV2ChecksumOvaSha1Checksum, OvaV2ChecksumOvaSha1ChecksumArgs
- Hex
Digest string - -(Required) The hexadecimal representation of the checksum.
- Hex
Digest string - -(Required) The hexadecimal representation of the checksum.
- hex_
digest string - -(Required) The hexadecimal representation of the checksum.
- hex
Digest String - -(Required) The hexadecimal representation of the checksum.
- hex
Digest string - -(Required) The hexadecimal representation of the checksum.
- hex_
digest str - -(Required) The hexadecimal representation of the checksum.
- hex
Digest String - -(Required) The hexadecimal representation of the checksum.
OvaV2ChecksumOvaSha256Checksum, OvaV2ChecksumOvaSha256ChecksumArgs
- Hex
Digest string - -(Required) The hexadecimal representation of the checksum.
- Hex
Digest string - -(Required) The hexadecimal representation of the checksum.
- hex_
digest string - -(Required) The hexadecimal representation of the checksum.
- hex
Digest String - -(Required) The hexadecimal representation of the checksum.
- hex
Digest string - -(Required) The hexadecimal representation of the checksum.
- hex_
digest str - -(Required) The hexadecimal representation of the checksum.
- hex
Digest String - -(Required) The hexadecimal representation of the checksum.
OvaV2CreatedBy, OvaV2CreatedByArgs
- Additional
Attributes List<PiersKarsenbarg. Nutanix. Inputs. Ova V2Created By Additional Attribute> - -(Optional) Any additional attribute for the User.
- Creation
Type string - -(Optional) Creation type of the User. |ENUM |Description | |---|---| | PREDEFINED | Predefined creator workflow type is for entity created by the system. | | SERVICEDEFINED | Service defined creator workflow type is for entity created by the service. | | USERDEFINED | User defined creator workflow type is for entity created by the users. |
- Description string
- -(Optional) Description of the User.
- Display
Name string - -(Optional) Display name for the User.
- Email
Id string - -(Optional) Email Id for the User.
- Ext
Id string - First
Name string - -(Optional) First name for the User.
- Idp
Id string - -(Optional) Identifier of the IDP for the User.
- Is
Force boolReset Password Enabled - -(Optional) Flag to force the User to reset password.
- Last
Name string - -(Optional) Last name for the User.
- Links
List<Piers
Karsenbarg. Nutanix. Inputs. Ova V2Created By Link> - Locale string
- -(Optional) Default locale for the User.
- Middle
Initial string - -(Optional) Middle name for the User.
- Password string
- -(Optional) Password of the user.
- Region string
- -(Optional) Default Region for the User.
- Status string
- -(Optional) Status of the User.
- Tenant
Id string - User
Type string - -(Required) Type of the User.
- Username string
- -(Required) Identifier for the User in the form an email address.
- Additional
Attributes []OvaV2Created By Additional Attribute - -(Optional) Any additional attribute for the User.
- Creation
Type string - -(Optional) Creation type of the User. |ENUM |Description | |---|---| | PREDEFINED | Predefined creator workflow type is for entity created by the system. | | SERVICEDEFINED | Service defined creator workflow type is for entity created by the service. | | USERDEFINED | User defined creator workflow type is for entity created by the users. |
- Description string
- -(Optional) Description of the User.
- Display
Name string - -(Optional) Display name for the User.
- Email
Id string - -(Optional) Email Id for the User.
- Ext
Id string - First
Name string - -(Optional) First name for the User.
- Idp
Id string - -(Optional) Identifier of the IDP for the User.
- Is
Force boolReset Password Enabled - -(Optional) Flag to force the User to reset password.
- Last
Name string - -(Optional) Last name for the User.
- Links
[]Ova
V2Created By Link - Locale string
- -(Optional) Default locale for the User.
- Middle
Initial string - -(Optional) Middle name for the User.
- Password string
- -(Optional) Password of the user.
- Region string
- -(Optional) Default Region for the User.
- Status string
- -(Optional) Status of the User.
- Tenant
Id string - User
Type string - -(Required) Type of the User.
- Username string
- -(Required) Identifier for the User in the form an email address.
- additional_
attributes list(object) - -(Optional) Any additional attribute for the User.
- creation_
type string - -(Optional) Creation type of the User. |ENUM |Description | |---|---| | PREDEFINED | Predefined creator workflow type is for entity created by the system. | | SERVICEDEFINED | Service defined creator workflow type is for entity created by the service. | | USERDEFINED | User defined creator workflow type is for entity created by the users. |
- description string
- -(Optional) Description of the User.
- display_
name string - -(Optional) Display name for the User.
- email_
id string - -(Optional) Email Id for the User.
- ext_
id string - first_
name string - -(Optional) First name for the User.
- idp_
id string - -(Optional) Identifier of the IDP for the User.
- is_
force_ boolreset_ password_ enabled - -(Optional) Flag to force the User to reset password.
- last_
name string - -(Optional) Last name for the User.
- links list(object)
- locale string
- -(Optional) Default locale for the User.
- middle_
initial string - -(Optional) Middle name for the User.
- password string
- -(Optional) Password of the user.
- region string
- -(Optional) Default Region for the User.
- status string
- -(Optional) Status of the User.
- tenant_
id string - user_
type string - -(Required) Type of the User.
- username string
- -(Required) Identifier for the User in the form an email address.
- additional
Attributes List<OvaV2Created By Additional Attribute> - -(Optional) Any additional attribute for the User.
- creation
Type String - -(Optional) Creation type of the User. |ENUM |Description | |---|---| | PREDEFINED | Predefined creator workflow type is for entity created by the system. | | SERVICEDEFINED | Service defined creator workflow type is for entity created by the service. | | USERDEFINED | User defined creator workflow type is for entity created by the users. |
- description String
- -(Optional) Description of the User.
- display
Name String - -(Optional) Display name for the User.
- email
Id String - -(Optional) Email Id for the User.
- ext
Id String - first
Name String - -(Optional) First name for the User.
- idp
Id String - -(Optional) Identifier of the IDP for the User.
- is
Force BooleanReset Password Enabled - -(Optional) Flag to force the User to reset password.
- last
Name String - -(Optional) Last name for the User.
- links
List<Ova
V2Created By Link> - locale String
- -(Optional) Default locale for the User.
- middle
Initial String - -(Optional) Middle name for the User.
- password String
- -(Optional) Password of the user.
- region String
- -(Optional) Default Region for the User.
- status String
- -(Optional) Status of the User.
- tenant
Id String - user
Type String - -(Required) Type of the User.
- username String
- -(Required) Identifier for the User in the form an email address.
- additional
Attributes OvaV2Created By Additional Attribute[] - -(Optional) Any additional attribute for the User.
- creation
Type string - -(Optional) Creation type of the User. |ENUM |Description | |---|---| | PREDEFINED | Predefined creator workflow type is for entity created by the system. | | SERVICEDEFINED | Service defined creator workflow type is for entity created by the service. | | USERDEFINED | User defined creator workflow type is for entity created by the users. |
- description string
- -(Optional) Description of the User.
- display
Name string - -(Optional) Display name for the User.
- email
Id string - -(Optional) Email Id for the User.
- ext
Id string - first
Name string - -(Optional) First name for the User.
- idp
Id string - -(Optional) Identifier of the IDP for the User.
- is
Force booleanReset Password Enabled - -(Optional) Flag to force the User to reset password.
- last
Name string - -(Optional) Last name for the User.
- links
Ova
V2Created By Link[] - locale string
- -(Optional) Default locale for the User.
- middle
Initial string - -(Optional) Middle name for the User.
- password string
- -(Optional) Password of the user.
- region string
- -(Optional) Default Region for the User.
- status string
- -(Optional) Status of the User.
- tenant
Id string - user
Type string - -(Required) Type of the User.
- username string
- -(Required) Identifier for the User in the form an email address.
- additional_
attributes Sequence[OvaV2Created By Additional Attribute] - -(Optional) Any additional attribute for the User.
- creation_
type str - -(Optional) Creation type of the User. |ENUM |Description | |---|---| | PREDEFINED | Predefined creator workflow type is for entity created by the system. | | SERVICEDEFINED | Service defined creator workflow type is for entity created by the service. | | USERDEFINED | User defined creator workflow type is for entity created by the users. |
- description str
- -(Optional) Description of the User.
- display_
name str - -(Optional) Display name for the User.
- email_
id str - -(Optional) Email Id for the User.
- ext_
id str - first_
name str - -(Optional) First name for the User.
- idp_
id str - -(Optional) Identifier of the IDP for the User.
- is_
force_ boolreset_ password_ enabled - -(Optional) Flag to force the User to reset password.
- last_
name str - -(Optional) Last name for the User.
- links
Sequence[Ova
V2Created By Link] - locale str
- -(Optional) Default locale for the User.
- middle_
initial str - -(Optional) Middle name for the User.
- password str
- -(Optional) Password of the user.
- region str
- -(Optional) Default Region for the User.
- status str
- -(Optional) Status of the User.
- tenant_
id str - user_
type str - -(Required) Type of the User.
- username str
- -(Required) Identifier for the User in the form an email address.
- additional
Attributes List<Property Map> - -(Optional) Any additional attribute for the User.
- creation
Type String - -(Optional) Creation type of the User. |ENUM |Description | |---|---| | PREDEFINED | Predefined creator workflow type is for entity created by the system. | | SERVICEDEFINED | Service defined creator workflow type is for entity created by the service. | | USERDEFINED | User defined creator workflow type is for entity created by the users. |
- description String
- -(Optional) Description of the User.
- display
Name String - -(Optional) Display name for the User.
- email
Id String - -(Optional) Email Id for the User.
- ext
Id String - first
Name String - -(Optional) First name for the User.
- idp
Id String - -(Optional) Identifier of the IDP for the User.
- is
Force BooleanReset Password Enabled - -(Optional) Flag to force the User to reset password.
- last
Name String - -(Optional) Last name for the User.
- links List<Property Map>
- locale String
- -(Optional) Default locale for the User.
- middle
Initial String - -(Optional) Middle name for the User.
- password String
- -(Optional) Password of the user.
- region String
- -(Optional) Default Region for the User.
- status String
- -(Optional) Status of the User.
- tenant
Id String - user
Type String - -(Required) Type of the User.
- username String
- -(Required) Identifier for the User in the form an email address.
OvaV2CreatedByAdditionalAttribute, OvaV2CreatedByAdditionalAttributeArgs
- Name string
- -(Optional) The URL at which the entity described by the link can be accessed.
- Values
List<Piers
Karsenbarg. Nutanix. Inputs. Ova V2Created By Additional Attribute Value> - -(Optional) A name that identifies the relationship of the link to the object that is returned by the URL. The unique value of "self" identifies the URL for the object.
- Name string
- -(Optional) The URL at which the entity described by the link can be accessed.
- Values
[]Ova
V2Created By Additional Attribute Value - -(Optional) A name that identifies the relationship of the link to the object that is returned by the URL. The unique value of "self" identifies the URL for the object.
- name string
- -(Optional) The URL at which the entity described by the link can be accessed.
- values list(object)
- -(Optional) A name that identifies the relationship of the link to the object that is returned by the URL. The unique value of "self" identifies the URL for the object.
- name String
- -(Optional) The URL at which the entity described by the link can be accessed.
- values
List<Ova
V2Created By Additional Attribute Value> - -(Optional) A name that identifies the relationship of the link to the object that is returned by the URL. The unique value of "self" identifies the URL for the object.
- name string
- -(Optional) The URL at which the entity described by the link can be accessed.
- values
Ova
V2Created By Additional Attribute Value[] - -(Optional) A name that identifies the relationship of the link to the object that is returned by the URL. The unique value of "self" identifies the URL for the object.
- name str
- -(Optional) The URL at which the entity described by the link can be accessed.
- values
Sequence[Ova
V2Created By Additional Attribute Value] - -(Optional) A name that identifies the relationship of the link to the object that is returned by the URL. The unique value of "self" identifies the URL for the object.
- name String
- -(Optional) The URL at which the entity described by the link can be accessed.
- values List<Property Map>
- -(Optional) A name that identifies the relationship of the link to the object that is returned by the URL. The unique value of "self" identifies the URL for the object.
OvaV2CreatedByAdditionalAttributeValue, OvaV2CreatedByAdditionalAttributeValueArgs
- Boolean bool
- Integer int
- Integer
Lists List<int> - Map
Of List<PiersStrings Karsenbarg. Nutanix. Inputs. Ova V2Created By Additional Attribute Value Map Of String> - Object Dictionary<string, string>
- String string
- String
Lists List<string>
- Boolean bool
- Integer int
- Integer
Lists []int - Map
Of []OvaStrings V2Created By Additional Attribute Value Map Of String - Object map[string]string
- String string
- String
Lists []string
- boolean bool
- integer number
- integer_
lists list(number) - map_
of_ list(object)strings - object map(string)
- string string
- string_
lists list(string)
- boolean_ Boolean
- integer Integer
- integer
Lists List<Integer> - map
Of List<OvaStrings V2Created By Additional Attribute Value Map Of String> - object Map<String,String>
- string String
- string
Lists List<String>
- boolean boolean
- integer number
- integer
Lists number[] - map
Of OvaStrings V2Created By Additional Attribute Value Map Of String[] - object {[key: string]: string}
- string string
- string
Lists string[]
- boolean bool
- integer int
- integer_
lists Sequence[int] - map_
of_ Sequence[Ovastrings V2Created By Additional Attribute Value Map Of String] - object Mapping[str, str]
- string str
- string_
lists Sequence[str]
- boolean Boolean
- integer Number
- integer
Lists List<Number> - map
Of List<Property Map>Strings - object Map<String>
- string String
- string
Lists List<String>
OvaV2CreatedByAdditionalAttributeValueMapOfString, OvaV2CreatedByAdditionalAttributeValueMapOfStringArgs
- Map Dictionary<string, string>
- Map map[string]string
- map map(string)
- map Map<String,String>
- map {[key: string]: string}
- map Mapping[str, str]
- map Map<String>
OvaV2CreatedByLink, OvaV2CreatedByLinkArgs
OvaV2Link, OvaV2LinkArgs
OvaV2Source, OvaV2SourceArgs
- Object
Lite List<PiersSources Karsenbarg. Nutanix. Inputs. Ova V2Source Object Lite Source> - -(Optional) The source of the OVA file when it is being created from an object lite upload.
- Ova
Url List<PiersSources Karsenbarg. Nutanix. Inputs. Ova V2Source Ova Url Source> - -(Optional) The source of the OVA file when it is being created from a URL.
- Ova
Vm List<PiersSources Karsenbarg. Nutanix. Inputs. Ova V2Source Ova Vm Source> - -(Optional) The source of the OVA file when it is being created from a VM.
- Object
Lite []OvaSources V2Source Object Lite Source - -(Optional) The source of the OVA file when it is being created from an object lite upload.
- Ova
Url []OvaSources V2Source Ova Url Source - -(Optional) The source of the OVA file when it is being created from a URL.
- Ova
Vm []OvaSources V2Source Ova Vm Source - -(Optional) The source of the OVA file when it is being created from a VM.
- object_
lite_ list(object)sources - -(Optional) The source of the OVA file when it is being created from an object lite upload.
- ova_
url_ list(object)sources - -(Optional) The source of the OVA file when it is being created from a URL.
- ova_
vm_ list(object)sources - -(Optional) The source of the OVA file when it is being created from a VM.
- object
Lite List<OvaSources V2Source Object Lite Source> - -(Optional) The source of the OVA file when it is being created from an object lite upload.
- ova
Url List<OvaSources V2Source Ova Url Source> - -(Optional) The source of the OVA file when it is being created from a URL.
- ova
Vm List<OvaSources V2Source Ova Vm Source> - -(Optional) The source of the OVA file when it is being created from a VM.
- object
Lite OvaSources V2Source Object Lite Source[] - -(Optional) The source of the OVA file when it is being created from an object lite upload.
- ova
Url OvaSources V2Source Ova Url Source[] - -(Optional) The source of the OVA file when it is being created from a URL.
- ova
Vm OvaSources V2Source Ova Vm Source[] - -(Optional) The source of the OVA file when it is being created from a VM.
- object_
lite_ Sequence[Ovasources V2Source Object Lite Source] - -(Optional) The source of the OVA file when it is being created from an object lite upload.
- ova_
url_ Sequence[Ovasources V2Source Ova Url Source] - -(Optional) The source of the OVA file when it is being created from a URL.
- ova_
vm_ Sequence[Ovasources V2Source Ova Vm Source] - -(Optional) The source of the OVA file when it is being created from a VM.
- object
Lite List<Property Map>Sources - -(Optional) The source of the OVA file when it is being created from an object lite upload.
- ova
Url List<Property Map>Sources - -(Optional) The source of the OVA file when it is being created from a URL.
- ova
Vm List<Property Map>Sources - -(Optional) The source of the OVA file when it is being created from a VM.
OvaV2SourceObjectLiteSource, OvaV2SourceObjectLiteSourceArgs
- Key string
- -(Required) The identifier of the object from which the OVA file is being created.
- Key string
- -(Required) The identifier of the object from which the OVA file is being created.
- key string
- -(Required) The identifier of the object from which the OVA file is being created.
- key String
- -(Required) The identifier of the object from which the OVA file is being created.
- key string
- -(Required) The identifier of the object from which the OVA file is being created.
- key str
- -(Required) The identifier of the object from which the OVA file is being created.
- key String
- -(Required) The identifier of the object from which the OVA file is being created.
OvaV2SourceOvaUrlSource, OvaV2SourceOvaUrlSourceArgs
- Url string
- -(Required) The URL from which the OVA file can be downloaded.
- Basic
Auths List<PiersKarsenbarg. Nutanix. Inputs. Ova V2Source Ova Url Source Basic Auth> - -(Optional) Basic authentication credentials for accessing the OVA file.
- Should
Allow boolInsecure Url - -(Optional) Flag to allow insecure URLs.
- Url string
- -(Required) The URL from which the OVA file can be downloaded.
- Basic
Auths []OvaV2Source Ova Url Source Basic Auth - -(Optional) Basic authentication credentials for accessing the OVA file.
- Should
Allow boolInsecure Url - -(Optional) Flag to allow insecure URLs.
- url string
- -(Required) The URL from which the OVA file can be downloaded.
- basic_
auths list(object) - -(Optional) Basic authentication credentials for accessing the OVA file.
- should_
allow_ boolinsecure_ url - -(Optional) Flag to allow insecure URLs.
- url String
- -(Required) The URL from which the OVA file can be downloaded.
- basic
Auths List<OvaV2Source Ova Url Source Basic Auth> - -(Optional) Basic authentication credentials for accessing the OVA file.
- should
Allow BooleanInsecure Url - -(Optional) Flag to allow insecure URLs.
- url string
- -(Required) The URL from which the OVA file can be downloaded.
- basic
Auths OvaV2Source Ova Url Source Basic Auth[] - -(Optional) Basic authentication credentials for accessing the OVA file.
- should
Allow booleanInsecure Url - -(Optional) Flag to allow insecure URLs.
- url str
- -(Required) The URL from which the OVA file can be downloaded.
- basic_
auths Sequence[OvaV2Source Ova Url Source Basic Auth] - -(Optional) Basic authentication credentials for accessing the OVA file.
- should_
allow_ boolinsecure_ url - -(Optional) Flag to allow insecure URLs.
- url String
- -(Required) The URL from which the OVA file can be downloaded.
- basic
Auths List<Property Map> - -(Optional) Basic authentication credentials for accessing the OVA file.
- should
Allow BooleanInsecure Url - -(Optional) Flag to allow insecure URLs.
OvaV2SourceOvaUrlSourceBasicAuth, OvaV2SourceOvaUrlSourceBasicAuthArgs
OvaV2SourceOvaVmSource, OvaV2SourceOvaVmSourceArgs
- Disk
File stringFormat - -(Required) The disk file format of the VM.
- Vm
Ext stringId - -(Required) The external identifier of the VM from which the OVA file is being created.
- Disk
File stringFormat - -(Required) The disk file format of the VM.
- Vm
Ext stringId - -(Required) The external identifier of the VM from which the OVA file is being created.
- disk_
file_ stringformat - -(Required) The disk file format of the VM.
- vm_
ext_ stringid - -(Required) The external identifier of the VM from which the OVA file is being created.
- disk
File StringFormat - -(Required) The disk file format of the VM.
- vm
Ext StringId - -(Required) The external identifier of the VM from which the OVA file is being created.
- disk
File stringFormat - -(Required) The disk file format of the VM.
- vm
Ext stringId - -(Required) The external identifier of the VM from which the OVA file is being created.
- disk_
file_ strformat - -(Required) The disk file format of the VM.
- vm_
ext_ strid - -(Required) The external identifier of the VM from which the OVA file is being created.
- disk
File StringFormat - -(Required) The disk file format of the VM.
- vm
Ext StringId - -(Required) The external identifier of the VM from which the OVA file is being created.
OvaV2VmConfig, OvaV2VmConfigArgs
- Apc
Configs List<PiersKarsenbarg. Nutanix. Inputs. Ova V2Vm Config Apc Config> - -(Optional) Advanced Processor Compatibility configuration for the VM. Enabling this retains the CPU model for the VM across power cycles and migrations.
- Availability
Zones List<PiersKarsenbarg. Nutanix. Inputs. Ova V2Vm Config Availability Zone> - -(Optional) Reference to an availability zone.
- Bios
Uuid string - -(Optional) BIOS UUID of the VM. It should be of type UUID.
- Boot
Configs List<PiersKarsenbarg. Nutanix. Inputs. Ova V2Vm Config Boot Config> - -(Optional) Indicates the order of device types in which the VM should try to boot from. If the boot device order is not provided the system will decide an appropriate boot device order.
- Categories
List<Piers
Karsenbarg. Nutanix. Inputs. Ova V2Vm Config Category> - -(Optional) Categories for the VM.
- Cd
Roms List<PiersKarsenbarg. Nutanix. Inputs. Ova V2Vm Config Cd Rom> - -(Optional) CD-ROMs attached to the VM.
- Clusters
List<Piers
Karsenbarg. Nutanix. Inputs. Ova V2Vm Config Cluster> - -(Optional) Reference to a cluster.
- Create
Time string - -(Optional) VM creation time
- Description string
- -(Optional) VM description
- Disks
List<Piers
Karsenbarg. Nutanix. Inputs. Ova V2Vm Config Disk> - -(Optional) Disks attached to the VM.
- Enabled
Cpu List<string>Features - -(Optional) The list of additional CPU features to be enabled. HardwareVirtualization: Indicates whether hardware assisted virtualization should be enabled for the Guest OS or not. Once enabled, the Guest OS can deploy a nested hypervisor
- Ext
Id string - Generation
Uuid string - -(Optional) Generation UUID of the VM. It should be of type UUID.
- Gpuses
List<Piers
Karsenbarg. Nutanix. Inputs. Ova V2Vm Config Gpus> - -(Optional) GPUs attached to the VM.
- Guest
Customizations List<PiersKarsenbarg. Nutanix. Inputs. Ova V2Vm Config Guest Customization> - -(Optional) Stage a Sysprep or cloud-init configuration file to be used by the guest for the next boot. Note that the Sysprep command must be used to generalize the Windows VMs before triggering this API call.
- Guest
Tools List<PiersKarsenbarg. Nutanix. Inputs. Ova V2Vm Config Guest Tool> - -(Optional) The details about Nutanix Guest Tools for a VM.
- Hardware
Clock stringTimezone - -(Optional) VM hardware clock timezone in IANA TZDB format (America/Los_Angeles).
- Hosts
List<Piers
Karsenbarg. Nutanix. Inputs. Ova V2Vm Config Host> - -(Optional) Reference to the host, the VM is running on.
- Is
Agent boolVm - -(Optional) Indicates whether the VM is an agent VM or not. When their host enters maintenance mode, once the normal VMs are evacuated, the agent VMs are powered off. When the host is restored, agent VMs are powered on before the normal VMs are restored. In other words, agent VMs cannot be HA-protected or live migrated.
- Is
Branding boolEnabled - -(Optional) Indicates whether to remove AHV branding from VM firmware tables or not.
- Is
Cpu boolHotplug Enabled - -(Optional) Indicates whether the VM CPU hotplug is enabled.
- Is
Cpu boolPassthrough Enabled - -(Optional) Indicates whether to passthrough the host CPU features to the guest or not. Enabling this will make VM incapable of live migration.
- Is
Gpu boolConsole Enabled - -(Optional) Indicates whether the vGPU console is enabled or not.
- Is
Memory boolOvercommit Enabled - -(Optional) Indicates whether the memory overcommit feature should be enabled for the VM or not. If enabled, parts of the VM memory may reside outside of the hypervisor physical memory. Once enabled, it should be expected that the VM may suffer performance degradation.
- Is
Scsi boolController Enabled - -(Optional) Indicates whether the VM SCSI controller is enabled.
- Is
Vcpu boolHard Pinning Enabled - -(Optional) Indicates whether the vCPUs should be hard pinned to specific pCPUs or not.
- Is
Vga boolConsole Enabled - -(Optional) Indicates whether the VGA console should be disabled or not.
- Machine
Type string - -(Optional) Machine type for the VM. Machine type Q35 is required for secure boot and does not support IDE disks.
- Memory
Size intBytes - -(Optional) Memory size in bytes.
- Name string
- -(Optional) VM name.
- Nics
List<Piers
Karsenbarg. Nutanix. Inputs. Ova V2Vm Config Nic> - -(Optional) NICs attached to the VM.
- Num
Cores intPer Socket - -(Optional) Number of cores per socket.
- Num
Numa intNodes - -(Optional) Number of NUMA nodes. 0 means NUMA is disabled.
- Num
Sockets int - -(Optional) Number of vCPU sockets.
- Num
Threads intPer Core - -(Optional) Number of threads per core
- Ownership
Infos List<PiersKarsenbarg. Nutanix. Inputs. Ova V2Vm Config Ownership Info> - -(Optional) Ownership information for the VM.
- Power
State string - Projects
List<Piers
Karsenbarg. Nutanix. Inputs. Ova V2Vm Config Project> - -(Optional) Reference to a project.
- Protection
Policy List<PiersStates Karsenbarg. Nutanix. Inputs. Ova V2Vm Config Protection Policy State> - -(Optional) Status of protection policy applied to this VM.
- Protection
Type string - -(Optional) The type of protection applied on a VM. PD_PROTECTED indicates a VM is protected using the Prism Element. RULE_PROTECTED indicates a VM protection using the Prism Central.
- Serial
Ports List<PiersKarsenbarg. Nutanix. Inputs. Ova V2Vm Config Serial Port> - -(Optional) Serial ports configured on the VM.
- Sources
List<Piers
Karsenbarg. Nutanix. Inputs. Ova V2Vm Config Source> - -(Optional) Reference to an entity that the VM should be cloned or created from
- Storage
Configs List<PiersKarsenbarg. Nutanix. Inputs. Ova V2Vm Config Storage Config> - -(Optional) Storage configuration for VM.
- Update
Time string - -(Optional) VM last updated time.
- Vtpm
Configs List<PiersKarsenbarg. Nutanix. Inputs. Ova V2Vm Config Vtpm Config> - -(Optional) Indicates how the vTPM for the VM should be configured.
- Apc
Configs []OvaV2Vm Config Apc Config - -(Optional) Advanced Processor Compatibility configuration for the VM. Enabling this retains the CPU model for the VM across power cycles and migrations.
- Availability
Zones []OvaV2Vm Config Availability Zone - -(Optional) Reference to an availability zone.
- Bios
Uuid string - -(Optional) BIOS UUID of the VM. It should be of type UUID.
- Boot
Configs []OvaV2Vm Config Boot Config - -(Optional) 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
[]Ova
V2Vm Config Category - -(Optional) Categories for the VM.
- Cd
Roms []OvaV2Vm Config Cd Rom - -(Optional) CD-ROMs attached to the VM.
- Clusters
[]Ova
V2Vm Config Cluster - -(Optional) Reference to a cluster.
- Create
Time string - -(Optional) VM creation time
- Description string
- -(Optional) VM description
- Disks
[]Ova
V2Vm Config Disk - -(Optional) Disks attached to the VM.
- Enabled
Cpu []stringFeatures - -(Optional) The list of additional CPU features to be enabled. HardwareVirtualization: Indicates whether hardware assisted virtualization should be enabled for the Guest OS or not. Once enabled, the Guest OS can deploy a nested hypervisor
- Ext
Id string - Generation
Uuid string - -(Optional) Generation UUID of the VM. It should be of type UUID.
- Gpuses
[]Ova
V2Vm Config Gpus - -(Optional) GPUs attached to the VM.
- Guest
Customizations []OvaV2Vm Config Guest Customization - -(Optional) 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 []OvaV2Vm Config Guest Tool - -(Optional) The details about Nutanix Guest Tools for a VM.
- Hardware
Clock stringTimezone - -(Optional) VM hardware clock timezone in IANA TZDB format (America/Los_Angeles).
- Hosts
[]Ova
V2Vm Config Host - -(Optional) Reference to the host, the VM is running on.
- Is
Agent boolVm - -(Optional) Indicates whether the VM is an agent VM or not. When their host enters maintenance mode, once the normal VMs are evacuated, the agent VMs are powered off. When the host is restored, agent VMs are powered on before the normal VMs are restored. In other words, agent VMs cannot be HA-protected or live migrated.
- Is
Branding boolEnabled - -(Optional) Indicates whether to remove AHV branding from VM firmware tables or not.
- Is
Cpu boolHotplug Enabled - -(Optional) Indicates whether the VM CPU hotplug is enabled.
- Is
Cpu boolPassthrough Enabled - -(Optional) Indicates whether to passthrough the host CPU features to the guest or not. Enabling this will make VM incapable of live migration.
- Is
Gpu boolConsole Enabled - -(Optional) Indicates whether the vGPU console is enabled or not.
- Is
Memory boolOvercommit Enabled - -(Optional) Indicates whether the memory overcommit feature should be enabled for the VM or not. If enabled, parts of the VM memory may reside outside of the hypervisor physical memory. Once enabled, it should be expected that the VM may suffer performance degradation.
- Is
Scsi boolController Enabled - -(Optional) Indicates whether the VM SCSI controller is enabled.
- Is
Vcpu boolHard Pinning Enabled - -(Optional) Indicates whether the vCPUs should be hard pinned to specific pCPUs or not.
- Is
Vga boolConsole Enabled - -(Optional) Indicates whether the VGA console should be disabled or not.
- Machine
Type string - -(Optional) Machine type for the VM. Machine type Q35 is required for secure boot and does not support IDE disks.
- Memory
Size intBytes - -(Optional) Memory size in bytes.
- Name string
- -(Optional) VM name.
- Nics
[]Ova
V2Vm Config Nic - -(Optional) NICs attached to the VM.
- Num
Cores intPer Socket - -(Optional) Number of cores per socket.
- Num
Numa intNodes - -(Optional) Number of NUMA nodes. 0 means NUMA is disabled.
- Num
Sockets int - -(Optional) Number of vCPU sockets.
- Num
Threads intPer Core - -(Optional) Number of threads per core
- Ownership
Infos []OvaV2Vm Config Ownership Info - -(Optional) Ownership information for the VM.
- Power
State string - Projects
[]Ova
V2Vm Config Project - -(Optional) Reference to a project.
- Protection
Policy []OvaStates V2Vm Config Protection Policy State - -(Optional) Status of protection policy applied to this VM.
- Protection
Type string - -(Optional) 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 []OvaV2Vm Config Serial Port - -(Optional) Serial ports configured on the VM.
- Sources
[]Ova
V2Vm Config Source - -(Optional) Reference to an entity that the VM should be cloned or created from
- Storage
Configs []OvaV2Vm Config Storage Config - -(Optional) Storage configuration for VM.
- Update
Time string - -(Optional) VM last updated time.
- Vtpm
Configs []OvaV2Vm Config Vtpm Config - -(Optional) Indicates how the vTPM for the VM should be configured.
- apc_
configs list(object) - -(Optional) Advanced Processor Compatibility configuration for the VM. Enabling this retains the CPU model for the VM across power cycles and migrations.
- availability_
zones list(object) - -(Optional) Reference to an availability zone.
- bios_
uuid string - -(Optional) BIOS UUID of the VM. It should be of type UUID.
- boot_
configs list(object) - -(Optional) Indicates the order of device types in which the VM should try to boot from. If the boot device order is not provided the system will decide an appropriate boot device order.
- categories list(object)
- -(Optional) Categories for the VM.
- cd_
roms list(object) - -(Optional) CD-ROMs attached to the VM.
- clusters list(object)
- -(Optional) Reference to a cluster.
- create_
time string - -(Optional) VM creation time
- description string
- -(Optional) VM description
- disks list(object)
- -(Optional) Disks attached to the VM.
- enabled_
cpu_ list(string)features - -(Optional) The list of additional CPU features to be enabled. HardwareVirtualization: Indicates whether hardware assisted virtualization should be enabled for the Guest OS or not. Once enabled, the Guest OS can deploy a nested hypervisor
- ext_
id string - generation_
uuid string - -(Optional) Generation UUID of the VM. It should be of type UUID.
- gpuses list(object)
- -(Optional) GPUs attached to the VM.
- guest_
customizations list(object) - -(Optional) Stage a Sysprep or cloud-init configuration file to be used by the guest for the next boot. Note that the Sysprep command must be used to generalize the Windows VMs before triggering this API call.
- guest_
tools list(object) - -(Optional) The details about Nutanix Guest Tools for a VM.
- hardware_
clock_ stringtimezone - -(Optional) VM hardware clock timezone in IANA TZDB format (America/Los_Angeles).
- hosts list(object)
- -(Optional) Reference to the host, the VM is running on.
- is_
agent_ boolvm - -(Optional) Indicates whether the VM is an agent VM or not. When their host enters maintenance mode, once the normal VMs are evacuated, the agent VMs are powered off. When the host is restored, agent VMs are powered on before the normal VMs are restored. In other words, agent VMs cannot be HA-protected or live migrated.
- is_
branding_ boolenabled - -(Optional) Indicates whether to remove AHV branding from VM firmware tables or not.
- is_
cpu_ boolhotplug_ enabled - -(Optional) Indicates whether the VM CPU hotplug is enabled.
- is_
cpu_ boolpassthrough_ enabled - -(Optional) Indicates whether to passthrough the host CPU features to the guest or not. Enabling this will make VM incapable of live migration.
- is_
gpu_ boolconsole_ enabled - -(Optional) Indicates whether the vGPU console is enabled or not.
- is_
memory_ boolovercommit_ enabled - -(Optional) Indicates whether the memory overcommit feature should be enabled for the VM or not. If enabled, parts of the VM memory may reside outside of the hypervisor physical memory. Once enabled, it should be expected that the VM may suffer performance degradation.
- is_
scsi_ boolcontroller_ enabled - -(Optional) Indicates whether the VM SCSI controller is enabled.
- is_
vcpu_ boolhard_ pinning_ enabled - -(Optional) Indicates whether the vCPUs should be hard pinned to specific pCPUs or not.
- is_
vga_ boolconsole_ enabled - -(Optional) Indicates whether the VGA console should be disabled or not.
- machine_
type string - -(Optional) Machine type for the VM. Machine type Q35 is required for secure boot and does not support IDE disks.
- memory_
size_ numberbytes - -(Optional) Memory size in bytes.
- name string
- -(Optional) VM name.
- nics list(object)
- -(Optional) NICs attached to the VM.
- num_
cores_ numberper_ socket - -(Optional) Number of cores per socket.
- num_
numa_ numbernodes - -(Optional) Number of NUMA nodes. 0 means NUMA is disabled.
- num_
sockets number - -(Optional) Number of vCPU sockets.
- num_
threads_ numberper_ core - -(Optional) Number of threads per core
- ownership_
infos list(object) - -(Optional) Ownership information for the VM.
- power_
state string - projects list(object)
- -(Optional) Reference to a project.
- protection_
policy_ list(object)states - -(Optional) Status of protection policy applied to this VM.
- protection_
type string - -(Optional) The type of protection applied on a VM. PD_PROTECTED indicates a VM is protected using the Prism Element. RULE_PROTECTED indicates a VM protection using the Prism Central.
- serial_
ports list(object) - -(Optional) Serial ports configured on the VM.
- sources list(object)
- -(Optional) Reference to an entity that the VM should be cloned or created from
- storage_
configs list(object) - -(Optional) Storage configuration for VM.
- update_
time string - -(Optional) VM last updated time.
- vtpm_
configs list(object) - -(Optional) Indicates how the vTPM for the VM should be configured.
- apc
Configs List<OvaV2Vm Config Apc Config> - -(Optional) Advanced Processor Compatibility configuration for the VM. Enabling this retains the CPU model for the VM across power cycles and migrations.
- availability
Zones List<OvaV2Vm Config Availability Zone> - -(Optional) Reference to an availability zone.
- bios
Uuid String - -(Optional) BIOS UUID of the VM. It should be of type UUID.
- boot
Configs List<OvaV2Vm Config Boot Config> - -(Optional) Indicates the order of device types in which the VM should try to boot from. If the boot device order is not provided the system will decide an appropriate boot device order.
- categories
List<Ova
V2Vm Config Category> - -(Optional) Categories for the VM.
- cd
Roms List<OvaV2Vm Config Cd Rom> - -(Optional) CD-ROMs attached to the VM.
- clusters
List<Ova
V2Vm Config Cluster> - -(Optional) Reference to a cluster.
- create
Time String - -(Optional) VM creation time
- description String
- -(Optional) VM description
- disks
List<Ova
V2Vm Config Disk> - -(Optional) Disks attached to the VM.
- enabled
Cpu List<String>Features - -(Optional) The list of additional CPU features to be enabled. HardwareVirtualization: Indicates whether hardware assisted virtualization should be enabled for the Guest OS or not. Once enabled, the Guest OS can deploy a nested hypervisor
- ext
Id String - generation
Uuid String - -(Optional) Generation UUID of the VM. It should be of type UUID.
- gpuses
List<Ova
V2Vm Config Gpus> - -(Optional) GPUs attached to the VM.
- guest
Customizations List<OvaV2Vm Config Guest Customization> - -(Optional) Stage a Sysprep or cloud-init configuration file to be used by the guest for the next boot. Note that the Sysprep command must be used to generalize the Windows VMs before triggering this API call.
- guest
Tools List<OvaV2Vm Config Guest Tool> - -(Optional) The details about Nutanix Guest Tools for a VM.
- hardware
Clock StringTimezone - -(Optional) VM hardware clock timezone in IANA TZDB format (America/Los_Angeles).
- hosts
List<Ova
V2Vm Config Host> - -(Optional) Reference to the host, the VM is running on.
- is
Agent BooleanVm - -(Optional) Indicates whether the VM is an agent VM or not. When their host enters maintenance mode, once the normal VMs are evacuated, the agent VMs are powered off. When the host is restored, agent VMs are powered on before the normal VMs are restored. In other words, agent VMs cannot be HA-protected or live migrated.
- is
Branding BooleanEnabled - -(Optional) Indicates whether to remove AHV branding from VM firmware tables or not.
- is
Cpu BooleanHotplug Enabled - -(Optional) Indicates whether the VM CPU hotplug is enabled.
- is
Cpu BooleanPassthrough Enabled - -(Optional) Indicates whether to passthrough the host CPU features to the guest or not. Enabling this will make VM incapable of live migration.
- is
Gpu BooleanConsole Enabled - -(Optional) Indicates whether the vGPU console is enabled or not.
- is
Memory BooleanOvercommit Enabled - -(Optional) Indicates whether the memory overcommit feature should be enabled for the VM or not. If enabled, parts of the VM memory may reside outside of the hypervisor physical memory. Once enabled, it should be expected that the VM may suffer performance degradation.
- is
Scsi BooleanController Enabled - -(Optional) Indicates whether the VM SCSI controller is enabled.
- is
Vcpu BooleanHard Pinning Enabled - -(Optional) Indicates whether the vCPUs should be hard pinned to specific pCPUs or not.
- is
Vga BooleanConsole Enabled - -(Optional) Indicates whether the VGA console should be disabled or not.
- machine
Type String - -(Optional) Machine type for the VM. Machine type Q35 is required for secure boot and does not support IDE disks.
- memory
Size IntegerBytes - -(Optional) Memory size in bytes.
- name String
- -(Optional) VM name.
- nics
List<Ova
V2Vm Config Nic> - -(Optional) NICs attached to the VM.
- num
Cores IntegerPer Socket - -(Optional) Number of cores per socket.
- num
Numa IntegerNodes - -(Optional) Number of NUMA nodes. 0 means NUMA is disabled.
- num
Sockets Integer - -(Optional) Number of vCPU sockets.
- num
Threads IntegerPer Core - -(Optional) Number of threads per core
- ownership
Infos List<OvaV2Vm Config Ownership Info> - -(Optional) Ownership information for the VM.
- power
State String - projects
List<Ova
V2Vm Config Project> - -(Optional) Reference to a project.
- protection
Policy List<OvaStates V2Vm Config Protection Policy State> - -(Optional) Status of protection policy applied to this VM.
- protection
Type String - -(Optional) The type of protection applied on a VM. PD_PROTECTED indicates a VM is protected using the Prism Element. RULE_PROTECTED indicates a VM protection using the Prism Central.
- serial
Ports List<OvaV2Vm Config Serial Port> - -(Optional) Serial ports configured on the VM.
- sources
List<Ova
V2Vm Config Source> - -(Optional) Reference to an entity that the VM should be cloned or created from
- storage
Configs List<OvaV2Vm Config Storage Config> - -(Optional) Storage configuration for VM.
- update
Time String - -(Optional) VM last updated time.
- vtpm
Configs List<OvaV2Vm Config Vtpm Config> - -(Optional) Indicates how the vTPM for the VM should be configured.
- apc
Configs OvaV2Vm Config Apc Config[] - -(Optional) Advanced Processor Compatibility configuration for the VM. Enabling this retains the CPU model for the VM across power cycles and migrations.
- availability
Zones OvaV2Vm Config Availability Zone[] - -(Optional) Reference to an availability zone.
- bios
Uuid string - -(Optional) BIOS UUID of the VM. It should be of type UUID.
- boot
Configs OvaV2Vm Config Boot Config[] - -(Optional) 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
Ova
V2Vm Config Category[] - -(Optional) Categories for the VM.
- cd
Roms OvaV2Vm Config Cd Rom[] - -(Optional) CD-ROMs attached to the VM.
- clusters
Ova
V2Vm Config Cluster[] - -(Optional) Reference to a cluster.
- create
Time string - -(Optional) VM creation time
- description string
- -(Optional) VM description
- disks
Ova
V2Vm Config Disk[] - -(Optional) Disks attached to the VM.
- enabled
Cpu string[]Features - -(Optional) The list of additional CPU features to be enabled. HardwareVirtualization: Indicates whether hardware assisted virtualization should be enabled for the Guest OS or not. Once enabled, the Guest OS can deploy a nested hypervisor
- ext
Id string - generation
Uuid string - -(Optional) Generation UUID of the VM. It should be of type UUID.
- gpuses
Ova
V2Vm Config Gpus[] - -(Optional) GPUs attached to the VM.
- guest
Customizations OvaV2Vm Config Guest Customization[] - -(Optional) 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 OvaV2Vm Config Guest Tool[] - -(Optional) The details about Nutanix Guest Tools for a VM.
- hardware
Clock stringTimezone - -(Optional) VM hardware clock timezone in IANA TZDB format (America/Los_Angeles).
- hosts
Ova
V2Vm Config Host[] - -(Optional) Reference to the host, the VM is running on.
- is
Agent booleanVm - -(Optional) Indicates whether the VM is an agent VM or not. When their host enters maintenance mode, once the normal VMs are evacuated, the agent VMs are powered off. When the host is restored, agent VMs are powered on before the normal VMs are restored. In other words, agent VMs cannot be HA-protected or live migrated.
- is
Branding booleanEnabled - -(Optional) Indicates whether to remove AHV branding from VM firmware tables or not.
- is
Cpu booleanHotplug Enabled - -(Optional) Indicates whether the VM CPU hotplug is enabled.
- is
Cpu booleanPassthrough Enabled - -(Optional) Indicates whether to passthrough the host CPU features to the guest or not. Enabling this will make VM incapable of live migration.
- is
Gpu booleanConsole Enabled - -(Optional) Indicates whether the vGPU console is enabled or not.
- is
Memory booleanOvercommit Enabled - -(Optional) Indicates whether the memory overcommit feature should be enabled for the VM or not. If enabled, parts of the VM memory may reside outside of the hypervisor physical memory. Once enabled, it should be expected that the VM may suffer performance degradation.
- is
Scsi booleanController Enabled - -(Optional) Indicates whether the VM SCSI controller is enabled.
- is
Vcpu booleanHard Pinning Enabled - -(Optional) Indicates whether the vCPUs should be hard pinned to specific pCPUs or not.
- is
Vga booleanConsole Enabled - -(Optional) Indicates whether the VGA console should be disabled or not.
- machine
Type string - -(Optional) Machine type for the VM. Machine type Q35 is required for secure boot and does not support IDE disks.
- memory
Size numberBytes - -(Optional) Memory size in bytes.
- name string
- -(Optional) VM name.
- nics
Ova
V2Vm Config Nic[] - -(Optional) NICs attached to the VM.
- num
Cores numberPer Socket - -(Optional) Number of cores per socket.
- num
Numa numberNodes - -(Optional) Number of NUMA nodes. 0 means NUMA is disabled.
- num
Sockets number - -(Optional) Number of vCPU sockets.
- num
Threads numberPer Core - -(Optional) Number of threads per core
- ownership
Infos OvaV2Vm Config Ownership Info[] - -(Optional) Ownership information for the VM.
- power
State string - projects
Ova
V2Vm Config Project[] - -(Optional) Reference to a project.
- protection
Policy OvaStates V2Vm Config Protection Policy State[] - -(Optional) Status of protection policy applied to this VM.
- protection
Type string - -(Optional) 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 OvaV2Vm Config Serial Port[] - -(Optional) Serial ports configured on the VM.
- sources
Ova
V2Vm Config Source[] - -(Optional) Reference to an entity that the VM should be cloned or created from
- storage
Configs OvaV2Vm Config Storage Config[] - -(Optional) Storage configuration for VM.
- update
Time string - -(Optional) VM last updated time.
- vtpm
Configs OvaV2Vm Config Vtpm Config[] - -(Optional) Indicates how the vTPM for the VM should be configured.
- apc_
configs Sequence[OvaV2Vm Config Apc Config] - -(Optional) Advanced Processor Compatibility configuration for the VM. Enabling this retains the CPU model for the VM across power cycles and migrations.
- availability_
zones Sequence[OvaV2Vm Config Availability Zone] - -(Optional) Reference to an availability zone.
- bios_
uuid str - -(Optional) BIOS UUID of the VM. It should be of type UUID.
- boot_
configs Sequence[OvaV2Vm Config Boot Config] - -(Optional) Indicates the order of device types in which the VM should try to boot from. If the boot device order is not provided the system will decide an appropriate boot device order.
- categories
Sequence[Ova
V2Vm Config Category] - -(Optional) Categories for the VM.
- cd_
roms Sequence[OvaV2Vm Config Cd Rom] - -(Optional) CD-ROMs attached to the VM.
- clusters
Sequence[Ova
V2Vm Config Cluster] - -(Optional) Reference to a cluster.
- create_
time str - -(Optional) VM creation time
- description str
- -(Optional) VM description
- disks
Sequence[Ova
V2Vm Config Disk] - -(Optional) Disks attached to the VM.
- enabled_
cpu_ Sequence[str]features - -(Optional) The list of additional CPU features to be enabled. HardwareVirtualization: Indicates whether hardware assisted virtualization should be enabled for the Guest OS or not. Once enabled, the Guest OS can deploy a nested hypervisor
- ext_
id str - generation_
uuid str - -(Optional) Generation UUID of the VM. It should be of type UUID.
- gpuses
Sequence[Ova
V2Vm Config Gpus] - -(Optional) GPUs attached to the VM.
- guest_
customizations Sequence[OvaV2Vm Config Guest Customization] - -(Optional) Stage a Sysprep or cloud-init configuration file to be used by the guest for the next boot. Note that the Sysprep command must be used to generalize the Windows VMs before triggering this API call.
- guest_
tools Sequence[OvaV2Vm Config Guest Tool] - -(Optional) The details about Nutanix Guest Tools for a VM.
- hardware_
clock_ strtimezone - -(Optional) VM hardware clock timezone in IANA TZDB format (America/Los_Angeles).
- hosts
Sequence[Ova
V2Vm Config Host] - -(Optional) Reference to the host, the VM is running on.
- is_
agent_ boolvm - -(Optional) Indicates whether the VM is an agent VM or not. When their host enters maintenance mode, once the normal VMs are evacuated, the agent VMs are powered off. When the host is restored, agent VMs are powered on before the normal VMs are restored. In other words, agent VMs cannot be HA-protected or live migrated.
- is_
branding_ boolenabled - -(Optional) Indicates whether to remove AHV branding from VM firmware tables or not.
- is_
cpu_ boolhotplug_ enabled - -(Optional) Indicates whether the VM CPU hotplug is enabled.
- is_
cpu_ boolpassthrough_ enabled - -(Optional) Indicates whether to passthrough the host CPU features to the guest or not. Enabling this will make VM incapable of live migration.
- is_
gpu_ boolconsole_ enabled - -(Optional) Indicates whether the vGPU console is enabled or not.
- is_
memory_ boolovercommit_ enabled - -(Optional) Indicates whether the memory overcommit feature should be enabled for the VM or not. If enabled, parts of the VM memory may reside outside of the hypervisor physical memory. Once enabled, it should be expected that the VM may suffer performance degradation.
- is_
scsi_ boolcontroller_ enabled - -(Optional) Indicates whether the VM SCSI controller is enabled.
- is_
vcpu_ boolhard_ pinning_ enabled - -(Optional) Indicates whether the vCPUs should be hard pinned to specific pCPUs or not.
- is_
vga_ boolconsole_ enabled - -(Optional) Indicates whether the VGA console should be disabled or not.
- machine_
type str - -(Optional) Machine type for the VM. Machine type Q35 is required for secure boot and does not support IDE disks.
- memory_
size_ intbytes - -(Optional) Memory size in bytes.
- name str
- -(Optional) VM name.
- nics
Sequence[Ova
V2Vm Config Nic] - -(Optional) NICs attached to the VM.
- num_
cores_ intper_ socket - -(Optional) Number of cores per socket.
- num_
numa_ intnodes - -(Optional) Number of NUMA nodes. 0 means NUMA is disabled.
- num_
sockets int - -(Optional) Number of vCPU sockets.
- num_
threads_ intper_ core - -(Optional) Number of threads per core
- ownership_
infos Sequence[OvaV2Vm Config Ownership Info] - -(Optional) Ownership information for the VM.
- power_
state str - projects
Sequence[Ova
V2Vm Config Project] - -(Optional) Reference to a project.
- protection_
policy_ Sequence[Ovastates V2Vm Config Protection Policy State] - -(Optional) Status of protection policy applied to this VM.
- protection_
type str - -(Optional) The type of protection applied on a VM. PD_PROTECTED indicates a VM is protected using the Prism Element. RULE_PROTECTED indicates a VM protection using the Prism Central.
- serial_
ports Sequence[OvaV2Vm Config Serial Port] - -(Optional) Serial ports configured on the VM.
- sources
Sequence[Ova
V2Vm Config Source] - -(Optional) Reference to an entity that the VM should be cloned or created from
- storage_
configs Sequence[OvaV2Vm Config Storage Config] - -(Optional) Storage configuration for VM.
- update_
time str - -(Optional) VM last updated time.
- vtpm_
configs Sequence[OvaV2Vm Config Vtpm Config] - -(Optional) Indicates how the vTPM for the VM should be configured.
- apc
Configs List<Property Map> - -(Optional) Advanced Processor Compatibility configuration for the VM. Enabling this retains the CPU model for the VM across power cycles and migrations.
- availability
Zones List<Property Map> - -(Optional) Reference to an availability zone.
- bios
Uuid String - -(Optional) BIOS UUID of the VM. It should be of type UUID.
- boot
Configs List<Property Map> - -(Optional) Indicates the order of device types in which the VM should try to boot from. If the boot device order is not provided the system will decide an appropriate boot device order.
- categories List<Property Map>
- -(Optional) Categories for the VM.
- cd
Roms List<Property Map> - -(Optional) CD-ROMs attached to the VM.
- clusters List<Property Map>
- -(Optional) Reference to a cluster.
- create
Time String - -(Optional) VM creation time
- description String
- -(Optional) VM description
- disks List<Property Map>
- -(Optional) Disks attached to the VM.
- enabled
Cpu List<String>Features - -(Optional) The list of additional CPU features to be enabled. HardwareVirtualization: Indicates whether hardware assisted virtualization should be enabled for the Guest OS or not. Once enabled, the Guest OS can deploy a nested hypervisor
- ext
Id String - generation
Uuid String - -(Optional) Generation UUID of the VM. It should be of type UUID.
- gpuses List<Property Map>
- -(Optional) GPUs attached to the VM.
- guest
Customizations List<Property Map> - -(Optional) Stage a Sysprep or cloud-init configuration file to be used by the guest for the next boot. Note that the Sysprep command must be used to generalize the Windows VMs before triggering this API call.
- guest
Tools List<Property Map> - -(Optional) The details about Nutanix Guest Tools for a VM.
- hardware
Clock StringTimezone - -(Optional) VM hardware clock timezone in IANA TZDB format (America/Los_Angeles).
- hosts List<Property Map>
- -(Optional) Reference to the host, the VM is running on.
- is
Agent BooleanVm - -(Optional) Indicates whether the VM is an agent VM or not. When their host enters maintenance mode, once the normal VMs are evacuated, the agent VMs are powered off. When the host is restored, agent VMs are powered on before the normal VMs are restored. In other words, agent VMs cannot be HA-protected or live migrated.
- is
Branding BooleanEnabled - -(Optional) Indicates whether to remove AHV branding from VM firmware tables or not.
- is
Cpu BooleanHotplug Enabled - -(Optional) Indicates whether the VM CPU hotplug is enabled.
- is
Cpu BooleanPassthrough Enabled - -(Optional) Indicates whether to passthrough the host CPU features to the guest or not. Enabling this will make VM incapable of live migration.
- is
Gpu BooleanConsole Enabled - -(Optional) Indicates whether the vGPU console is enabled or not.
- is
Memory BooleanOvercommit Enabled - -(Optional) Indicates whether the memory overcommit feature should be enabled for the VM or not. If enabled, parts of the VM memory may reside outside of the hypervisor physical memory. Once enabled, it should be expected that the VM may suffer performance degradation.
- is
Scsi BooleanController Enabled - -(Optional) Indicates whether the VM SCSI controller is enabled.
- is
Vcpu BooleanHard Pinning Enabled - -(Optional) Indicates whether the vCPUs should be hard pinned to specific pCPUs or not.
- is
Vga BooleanConsole Enabled - -(Optional) Indicates whether the VGA console should be disabled or not.
- machine
Type String - -(Optional) Machine type for the VM. Machine type Q35 is required for secure boot and does not support IDE disks.
- memory
Size NumberBytes - -(Optional) Memory size in bytes.
- name String
- -(Optional) VM name.
- nics List<Property Map>
- -(Optional) NICs attached to the VM.
- num
Cores NumberPer Socket - -(Optional) Number of cores per socket.
- num
Numa NumberNodes - -(Optional) Number of NUMA nodes. 0 means NUMA is disabled.
- num
Sockets Number - -(Optional) Number of vCPU sockets.
- num
Threads NumberPer Core - -(Optional) Number of threads per core
- ownership
Infos List<Property Map> - -(Optional) Ownership information for the VM.
- power
State String - projects List<Property Map>
- -(Optional) Reference to a project.
- protection
Policy List<Property Map>States - -(Optional) Status of protection policy applied to this VM.
- protection
Type String - -(Optional) The type of protection applied on a VM. PD_PROTECTED indicates a VM is protected using the Prism Element. RULE_PROTECTED indicates a VM protection using the Prism Central.
- serial
Ports List<Property Map> - -(Optional) Serial ports configured on the VM.
- sources List<Property Map>
- -(Optional) Reference to an entity that the VM should be cloned or created from
- storage
Configs List<Property Map> - -(Optional) Storage configuration for VM.
- update
Time String - -(Optional) VM last updated time.
- vtpm
Configs List<Property Map> - -(Optional) Indicates how the vTPM for the VM should be configured.
OvaV2VmConfigApcConfig, OvaV2VmConfigApcConfigArgs
- Cpu
Models List<PiersKarsenbarg. Nutanix. Inputs. Ova V2Vm Config Apc Config Cpu Model> - CPU model associated with the VM if Advanced Processor Compatibility(APC) is enabled. If APC is enabled and no CPU model is explicitly set, a default baseline CPU model is picked by the system. See the APC documentation for more information
cpu_model.name: (Required) Name of the CPU model associated with the VM.
- Is
Apc boolEnabled - If enabled, the selected CPU model will be retained across live and cold migrations of the VM.
- Cpu
Models []OvaV2Vm Config Apc Config Cpu Model - CPU model associated with the VM if Advanced Processor Compatibility(APC) is enabled. If APC is enabled and no CPU model is explicitly set, a default baseline CPU model is picked by the system. See the APC documentation for more information
cpu_model.name: (Required) Name of the CPU model associated with the VM.
- Is
Apc boolEnabled - If enabled, the selected CPU model will be retained across live and cold migrations of the VM.
- cpu_
models list(object) - CPU model associated with the VM if Advanced Processor Compatibility(APC) is enabled. If APC is enabled and no CPU model is explicitly set, a default baseline CPU model is picked by the system. See the APC documentation for more information
cpu_model.name: (Required) Name of the CPU model associated with the VM.
- is_
apc_ boolenabled - If enabled, the selected CPU model will be retained across live and cold migrations of the VM.
- cpu
Models List<OvaV2Vm Config Apc Config Cpu Model> - CPU model associated with the VM if Advanced Processor Compatibility(APC) is enabled. If APC is enabled and no CPU model is explicitly set, a default baseline CPU model is picked by the system. See the APC documentation for more information
cpu_model.name: (Required) Name of the CPU model associated with the VM.
- is
Apc BooleanEnabled - If enabled, the selected CPU model will be retained across live and cold migrations of the VM.
- cpu
Models OvaV2Vm Config Apc Config Cpu Model[] - CPU model associated with the VM if Advanced Processor Compatibility(APC) is enabled. If APC is enabled and no CPU model is explicitly set, a default baseline CPU model is picked by the system. See the APC documentation for more information
cpu_model.name: (Required) Name of the CPU model associated with the VM.
- is
Apc booleanEnabled - If enabled, the selected CPU model will be retained across live and cold migrations of the VM.
- cpu_
models Sequence[OvaV2Vm Config Apc Config Cpu Model] - CPU model associated with the VM if Advanced Processor Compatibility(APC) is enabled. If APC is enabled and no CPU model is explicitly set, a default baseline CPU model is picked by the system. See the APC documentation for more information
cpu_model.name: (Required) Name of the CPU model associated with the VM.
- is_
apc_ boolenabled - If enabled, the selected CPU model will be retained across live and cold migrations of the VM.
- cpu
Models List<Property Map> - CPU model associated with the VM if Advanced Processor Compatibility(APC) is enabled. If APC is enabled and no CPU model is explicitly set, a default baseline CPU model is picked by the system. See the APC documentation for more information
cpu_model.name: (Required) Name of the CPU model associated with the VM.
- is
Apc BooleanEnabled - If enabled, the selected CPU model will be retained across live and cold migrations of the VM.
OvaV2VmConfigApcConfigCpuModel, OvaV2VmConfigApcConfigCpuModelArgs
OvaV2VmConfigAvailabilityZone, OvaV2VmConfigAvailabilityZoneArgs
- Ext
Id string - -(Optional) The globally unique identifier of an availability zone type UUID.
- Ext
Id string - -(Optional) The globally unique identifier of an availability zone type UUID.
- ext_
id string - -(Optional) The globally unique identifier of an availability zone type UUID.
- ext
Id String - -(Optional) The globally unique identifier of an availability zone type UUID.
- ext
Id string - -(Optional) The globally unique identifier of an availability zone type UUID.
- ext_
id str - -(Optional) The globally unique identifier of an availability zone type UUID.
- ext
Id String - -(Optional) The globally unique identifier of an availability zone type UUID.
OvaV2VmConfigBootConfig, OvaV2VmConfigBootConfigArgs
- Legacy
Boots List<PiersKarsenbarg. Nutanix. Inputs. Ova V2Vm Config Boot Config Legacy Boot> - LegacyBoot config Object
- Uefi
Boots List<PiersKarsenbarg. Nutanix. Inputs. Ova V2Vm Config Boot Config Uefi Boot> - UefiBoot config Object
- Legacy
Boots []OvaV2Vm Config Boot Config Legacy Boot - LegacyBoot config Object
- Uefi
Boots []OvaV2Vm Config Boot Config Uefi Boot - UefiBoot config Object
- legacy_
boots list(object) - LegacyBoot config Object
- uefi_
boots list(object) - UefiBoot config Object
- legacy
Boots List<OvaV2Vm Config Boot Config Legacy Boot> - LegacyBoot config Object
- uefi
Boots List<OvaV2Vm Config Boot Config Uefi Boot> - UefiBoot config Object
- legacy
Boots OvaV2Vm Config Boot Config Legacy Boot[] - LegacyBoot config Object
- uefi
Boots OvaV2Vm Config Boot Config Uefi Boot[] - UefiBoot config Object
- legacy_
boots Sequence[OvaV2Vm Config Boot Config Legacy Boot] - LegacyBoot config Object
- uefi_
boots Sequence[OvaV2Vm Config Boot Config Uefi Boot] - UefiBoot config Object
- legacy
Boots List<Property Map> - LegacyBoot config Object
- uefi
Boots List<Property Map> - UefiBoot config Object
OvaV2VmConfigBootConfigLegacyBoot, OvaV2VmConfigBootConfigLegacyBootArgs
- Boot
Devices List<PiersKarsenbarg. Nutanix. Inputs. Ova V2Vm Config Boot Config Legacy Boot Boot Device> Boot Device object
boot_device.boot_device_disk: (Optional) Disk address.boot_device.boot_device_disk.disk_address.bus_type: (Required) Bus type for the deviceboot_device.boot_device_disk.disk_address.index: (Required) Device index on the bus. This field is ignored unless the bus details are specified.boot_device.boot_device_nic: (Optional) Disk Nic address.boot_device.boot_device_nic.mac_address: (Required) mac address
- Boot
Orders List<string> - 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. Valid values are 'CDROM', 'DISK', 'NETWORK'.
- Boot
Devices []OvaV2Vm Config Boot Config Legacy Boot Boot Device Boot Device object
boot_device.boot_device_disk: (Optional) Disk address.boot_device.boot_device_disk.disk_address.bus_type: (Required) Bus type for the deviceboot_device.boot_device_disk.disk_address.index: (Required) Device index on the bus. This field is ignored unless the bus details are specified.boot_device.boot_device_nic: (Optional) Disk Nic address.boot_device.boot_device_nic.mac_address: (Required) mac address
- Boot
Orders []string - 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. Valid values are 'CDROM', 'DISK', 'NETWORK'.
- boot_
devices list(object) Boot Device object
boot_device.boot_device_disk: (Optional) Disk address.boot_device.boot_device_disk.disk_address.bus_type: (Required) Bus type for the deviceboot_device.boot_device_disk.disk_address.index: (Required) Device index on the bus. This field is ignored unless the bus details are specified.boot_device.boot_device_nic: (Optional) Disk Nic address.boot_device.boot_device_nic.mac_address: (Required) mac address
- boot_
orders list(string) - 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. Valid values are 'CDROM', 'DISK', 'NETWORK'.
- boot
Devices List<OvaV2Vm Config Boot Config Legacy Boot Boot Device> Boot Device object
boot_device.boot_device_disk: (Optional) Disk address.boot_device.boot_device_disk.disk_address.bus_type: (Required) Bus type for the deviceboot_device.boot_device_disk.disk_address.index: (Required) Device index on the bus. This field is ignored unless the bus details are specified.boot_device.boot_device_nic: (Optional) Disk Nic address.boot_device.boot_device_nic.mac_address: (Required) mac address
- boot
Orders List<String> - 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. Valid values are 'CDROM', 'DISK', 'NETWORK'.
- boot
Devices OvaV2Vm Config Boot Config Legacy Boot Boot Device[] Boot Device object
boot_device.boot_device_disk: (Optional) Disk address.boot_device.boot_device_disk.disk_address.bus_type: (Required) Bus type for the deviceboot_device.boot_device_disk.disk_address.index: (Required) Device index on the bus. This field is ignored unless the bus details are specified.boot_device.boot_device_nic: (Optional) Disk Nic address.boot_device.boot_device_nic.mac_address: (Required) mac address
- boot
Orders string[] - 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. Valid values are 'CDROM', 'DISK', 'NETWORK'.
- boot_
devices Sequence[OvaV2Vm Config Boot Config Legacy Boot Boot Device] Boot Device object
boot_device.boot_device_disk: (Optional) Disk address.boot_device.boot_device_disk.disk_address.bus_type: (Required) Bus type for the deviceboot_device.boot_device_disk.disk_address.index: (Required) Device index on the bus. This field is ignored unless the bus details are specified.boot_device.boot_device_nic: (Optional) Disk Nic address.boot_device.boot_device_nic.mac_address: (Required) mac address
- boot_
orders Sequence[str] - 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. Valid values are 'CDROM', 'DISK', 'NETWORK'.
- boot
Devices List<Property Map> Boot Device object
boot_device.boot_device_disk: (Optional) Disk address.boot_device.boot_device_disk.disk_address.bus_type: (Required) Bus type for the deviceboot_device.boot_device_disk.disk_address.index: (Required) Device index on the bus. This field is ignored unless the bus details are specified.boot_device.boot_device_nic: (Optional) Disk Nic address.boot_device.boot_device_nic.mac_address: (Required) mac address
- boot
Orders List<String> - 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. Valid values are 'CDROM', 'DISK', 'NETWORK'.
OvaV2VmConfigBootConfigLegacyBootBootDevice, OvaV2VmConfigBootConfigLegacyBootBootDeviceArgs
OvaV2VmConfigBootConfigLegacyBootBootDeviceBootDeviceDisk, OvaV2VmConfigBootConfigLegacyBootBootDeviceBootDeviceDiskArgs
OvaV2VmConfigBootConfigLegacyBootBootDeviceBootDeviceDiskDiskAddress, OvaV2VmConfigBootConfigLegacyBootBootDeviceBootDeviceDiskDiskAddressArgs
OvaV2VmConfigBootConfigLegacyBootBootDeviceBootDeviceNic, OvaV2VmConfigBootConfigLegacyBootBootDeviceBootDeviceNicArgs
- Mac
Address string - MAC address of the emulated NIC.
- Mac
Address string - MAC address of the emulated NIC.
- mac_
address string - MAC address of the emulated NIC.
- mac
Address String - MAC address of the emulated NIC.
- mac
Address string - MAC address of the emulated NIC.
- mac_
address str - MAC address of the emulated NIC.
- mac
Address String - MAC address of the emulated NIC.
OvaV2VmConfigBootConfigUefiBoot, OvaV2VmConfigBootConfigUefiBootArgs
- Boot
Devices List<PiersKarsenbarg. Nutanix. Inputs. Ova V2Vm Config Boot Config Uefi Boot Boot Device> Boot Device object
boot_device.boot_device_disk: (Optional) Disk address.boot_device.boot_device_disk.disk_address.bus_type: (Required) Bus type for the deviceboot_device.boot_device_disk.disk_address.index: (Required) Device index on the bus. This field is ignored unless the bus details are specified.boot_device.boot_device_nic: (Optional) Disk Nic address.boot_device.boot_device_nic.mac_address: (Required) mac address
- Boot
Orders List<string> - 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. Valid values are 'CDROM', 'DISK', 'NETWORK'.
- Is
Secure boolBoot Enabled - Indicate whether to enable secure boot or not
- Nvram
Devices List<PiersKarsenbarg. Nutanix. Inputs. Ova V2Vm Config Boot Config Uefi Boot Nvram Device> - Configuration for NVRAM to be presented to the VM.
nvram_device.backing_storage_info: (Required) Storage provided by Nutanix ADSF
- Boot
Devices []OvaV2Vm Config Boot Config Uefi Boot Boot Device Boot Device object
boot_device.boot_device_disk: (Optional) Disk address.boot_device.boot_device_disk.disk_address.bus_type: (Required) Bus type for the deviceboot_device.boot_device_disk.disk_address.index: (Required) Device index on the bus. This field is ignored unless the bus details are specified.boot_device.boot_device_nic: (Optional) Disk Nic address.boot_device.boot_device_nic.mac_address: (Required) mac address
- Boot
Orders []string - 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. Valid values are 'CDROM', 'DISK', 'NETWORK'.
- Is
Secure boolBoot Enabled - Indicate whether to enable secure boot or not
- Nvram
Devices []OvaV2Vm Config Boot Config Uefi Boot Nvram Device - Configuration for NVRAM to be presented to the VM.
nvram_device.backing_storage_info: (Required) Storage provided by Nutanix ADSF
- boot_
devices list(object) Boot Device object
boot_device.boot_device_disk: (Optional) Disk address.boot_device.boot_device_disk.disk_address.bus_type: (Required) Bus type for the deviceboot_device.boot_device_disk.disk_address.index: (Required) Device index on the bus. This field is ignored unless the bus details are specified.boot_device.boot_device_nic: (Optional) Disk Nic address.boot_device.boot_device_nic.mac_address: (Required) mac address
- boot_
orders list(string) - 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. Valid values are 'CDROM', 'DISK', 'NETWORK'.
- is_
secure_ boolboot_ enabled - Indicate whether to enable secure boot or not
- nvram_
devices list(object) - Configuration for NVRAM to be presented to the VM.
nvram_device.backing_storage_info: (Required) Storage provided by Nutanix ADSF
- boot
Devices List<OvaV2Vm Config Boot Config Uefi Boot Boot Device> Boot Device object
boot_device.boot_device_disk: (Optional) Disk address.boot_device.boot_device_disk.disk_address.bus_type: (Required) Bus type for the deviceboot_device.boot_device_disk.disk_address.index: (Required) Device index on the bus. This field is ignored unless the bus details are specified.boot_device.boot_device_nic: (Optional) Disk Nic address.boot_device.boot_device_nic.mac_address: (Required) mac address
- boot
Orders List<String> - 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. Valid values are 'CDROM', 'DISK', 'NETWORK'.
- is
Secure BooleanBoot Enabled - Indicate whether to enable secure boot or not
- nvram
Devices List<OvaV2Vm Config Boot Config Uefi Boot Nvram Device> - Configuration for NVRAM to be presented to the VM.
nvram_device.backing_storage_info: (Required) Storage provided by Nutanix ADSF
- boot
Devices OvaV2Vm Config Boot Config Uefi Boot Boot Device[] Boot Device object
boot_device.boot_device_disk: (Optional) Disk address.boot_device.boot_device_disk.disk_address.bus_type: (Required) Bus type for the deviceboot_device.boot_device_disk.disk_address.index: (Required) Device index on the bus. This field is ignored unless the bus details are specified.boot_device.boot_device_nic: (Optional) Disk Nic address.boot_device.boot_device_nic.mac_address: (Required) mac address
- boot
Orders string[] - 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. Valid values are 'CDROM', 'DISK', 'NETWORK'.
- is
Secure booleanBoot Enabled - Indicate whether to enable secure boot or not
- nvram
Devices OvaV2Vm Config Boot Config Uefi Boot Nvram Device[] - Configuration for NVRAM to be presented to the VM.
nvram_device.backing_storage_info: (Required) Storage provided by Nutanix ADSF
- boot_
devices Sequence[OvaV2Vm Config Boot Config Uefi Boot Boot Device] Boot Device object
boot_device.boot_device_disk: (Optional) Disk address.boot_device.boot_device_disk.disk_address.bus_type: (Required) Bus type for the deviceboot_device.boot_device_disk.disk_address.index: (Required) Device index on the bus. This field is ignored unless the bus details are specified.boot_device.boot_device_nic: (Optional) Disk Nic address.boot_device.boot_device_nic.mac_address: (Required) mac address
- boot_
orders Sequence[str] - 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. Valid values are 'CDROM', 'DISK', 'NETWORK'.
- is_
secure_ boolboot_ enabled - Indicate whether to enable secure boot or not
- nvram_
devices Sequence[OvaV2Vm Config Boot Config Uefi Boot Nvram Device] - Configuration for NVRAM to be presented to the VM.
nvram_device.backing_storage_info: (Required) Storage provided by Nutanix ADSF
- boot
Devices List<Property Map> Boot Device object
boot_device.boot_device_disk: (Optional) Disk address.boot_device.boot_device_disk.disk_address.bus_type: (Required) Bus type for the deviceboot_device.boot_device_disk.disk_address.index: (Required) Device index on the bus. This field is ignored unless the bus details are specified.boot_device.boot_device_nic: (Optional) Disk Nic address.boot_device.boot_device_nic.mac_address: (Required) mac address
- boot
Orders List<String> - 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. Valid values are 'CDROM', 'DISK', 'NETWORK'.
- is
Secure BooleanBoot Enabled - Indicate whether to enable secure boot or not
- nvram
Devices List<Property Map> - Configuration for NVRAM to be presented to the VM.
nvram_device.backing_storage_info: (Required) Storage provided by Nutanix ADSF
OvaV2VmConfigBootConfigUefiBootBootDevice, OvaV2VmConfigBootConfigUefiBootBootDeviceArgs
OvaV2VmConfigBootConfigUefiBootBootDeviceBootDeviceDisk, OvaV2VmConfigBootConfigUefiBootBootDeviceBootDeviceDiskArgs
OvaV2VmConfigBootConfigUefiBootBootDeviceBootDeviceDiskDiskAddress, OvaV2VmConfigBootConfigUefiBootBootDeviceBootDeviceDiskDiskAddressArgs
OvaV2VmConfigBootConfigUefiBootBootDeviceBootDeviceNic, OvaV2VmConfigBootConfigUefiBootBootDeviceBootDeviceNicArgs
- Mac
Address string - MAC address of the emulated NIC.
- Mac
Address string - MAC address of the emulated NIC.
- mac_
address string - MAC address of the emulated NIC.
- mac
Address String - MAC address of the emulated NIC.
- mac
Address string - MAC address of the emulated NIC.
- mac_
address str - MAC address of the emulated NIC.
- mac
Address String - MAC address of the emulated NIC.
OvaV2VmConfigBootConfigUefiBootNvramDevice, OvaV2VmConfigBootConfigUefiBootNvramDeviceArgs
OvaV2VmConfigBootConfigUefiBootNvramDeviceBackingStorageInfo, OvaV2VmConfigBootConfigUefiBootNvramDeviceBackingStorageInfoArgs
- Data
Sources List<PiersKarsenbarg. Nutanix. Inputs. Ova V2Vm Config Boot Config Uefi Boot Nvram Device Backing Storage Info Data Source> - Disk
Ext stringId - Disk
Size intBytes - Is
Migration boolIn Progress - Storage
Configs List<PiersKarsenbarg. Nutanix. Inputs. Ova V2Vm Config Boot Config Uefi Boot Nvram Device Backing Storage Info Storage Config> - Storage
Containers List<PiersKarsenbarg. Nutanix. Inputs. Ova V2Vm Config Boot Config Uefi Boot Nvram Device Backing Storage Info Storage Container>
- Data
Sources []OvaV2Vm Config Boot Config Uefi Boot Nvram Device Backing Storage Info Data Source - Disk
Ext stringId - Disk
Size intBytes - Is
Migration boolIn Progress - Storage
Configs []OvaV2Vm Config Boot Config Uefi Boot Nvram Device Backing Storage Info Storage Config - Storage
Containers []OvaV2Vm Config Boot Config Uefi Boot Nvram Device Backing Storage Info Storage Container
- data
Sources List<OvaV2Vm Config Boot Config Uefi Boot Nvram Device Backing Storage Info Data Source> - disk
Ext StringId - disk
Size IntegerBytes - is
Migration BooleanIn Progress - storage
Configs List<OvaV2Vm Config Boot Config Uefi Boot Nvram Device Backing Storage Info Storage Config> - storage
Containers List<OvaV2Vm Config Boot Config Uefi Boot Nvram Device Backing Storage Info Storage Container>
- data
Sources OvaV2Vm Config Boot Config Uefi Boot Nvram Device Backing Storage Info Data Source[] - disk
Ext stringId - disk
Size numberBytes - is
Migration booleanIn Progress - storage
Configs OvaV2Vm Config Boot Config Uefi Boot Nvram Device Backing Storage Info Storage Config[] - storage
Containers OvaV2Vm Config Boot Config Uefi Boot Nvram Device Backing Storage Info Storage Container[]
- data_
sources Sequence[OvaV2Vm Config Boot Config Uefi Boot Nvram Device Backing Storage Info Data Source] - disk_
ext_ strid - disk_
size_ intbytes - is_
migration_ boolin_ progress - storage_
configs Sequence[OvaV2Vm Config Boot Config Uefi Boot Nvram Device Backing Storage Info Storage Config] - storage_
containers Sequence[OvaV2Vm Config Boot Config Uefi Boot Nvram Device Backing Storage Info Storage Container]
OvaV2VmConfigBootConfigUefiBootNvramDeviceBackingStorageInfoDataSource, OvaV2VmConfigBootConfigUefiBootNvramDeviceBackingStorageInfoDataSourceArgs
- References
[]Ova
V2Vm Config Boot Config Uefi Boot Nvram Device Backing Storage Info Data Source Reference - Reference to image or vm disk
- references list(object)
- Reference to image or vm disk
- references
List<Ova
V2Vm Config Boot Config Uefi Boot Nvram Device Backing Storage Info Data Source Reference> - Reference to image or vm disk
- references
Ova
V2Vm Config Boot Config Uefi Boot Nvram Device Backing Storage Info Data Source Reference[] - Reference to image or vm disk
- references
Sequence[Ova
V2Vm Config Boot Config Uefi Boot Nvram Device Backing Storage Info Data Source Reference] - Reference to image or vm disk
- references List<Property Map>
- Reference to image or vm disk
OvaV2VmConfigBootConfigUefiBootNvramDeviceBackingStorageInfoDataSourceReference, OvaV2VmConfigBootConfigUefiBootNvramDeviceBackingStorageInfoDataSourceReferenceArgs
- Image
References List<PiersKarsenbarg. Nutanix. Inputs. Ova V2Vm Config Boot Config Uefi Boot Nvram Device Backing Storage Info Data Source Reference Image Reference> - Image Reference
image_reference.image_ext_id: (Required) The globally unique identifier of an image. It should be of type UUID.
- Vm
Disk List<PiersReferences Karsenbarg. Nutanix. Inputs. Ova V2Vm Config Boot Config Uefi Boot Nvram Device Backing Storage Info Data Source Reference Vm Disk Reference> - Vm Disk Reference
vm_disk_reference.disk_ext_id: (Optional) The globally unique identifier of a VM disk. It should be of type UUID.vm_disk_reference.disk_address: (Optional) Disk address.vm_disk_reference.vm_reference: (Optional) This is a reference to a VM.
- Image
References []OvaV2Vm Config Boot Config Uefi Boot Nvram Device Backing Storage Info Data Source Reference Image Reference - Image Reference
image_reference.image_ext_id: (Required) The globally unique identifier of an image. It should be of type UUID.
- Vm
Disk []OvaReferences V2Vm Config Boot Config Uefi Boot Nvram Device Backing Storage Info Data Source Reference Vm Disk Reference - Vm Disk Reference
vm_disk_reference.disk_ext_id: (Optional) The globally unique identifier of a VM disk. It should be of type UUID.vm_disk_reference.disk_address: (Optional) Disk address.vm_disk_reference.vm_reference: (Optional) This is a reference to a VM.
- image_
references list(object) - Image Reference
image_reference.image_ext_id: (Required) The globally unique identifier of an image. It should be of type UUID.
- vm_
disk_ list(object)references - Vm Disk Reference
vm_disk_reference.disk_ext_id: (Optional) The globally unique identifier of a VM disk. It should be of type UUID.vm_disk_reference.disk_address: (Optional) Disk address.vm_disk_reference.vm_reference: (Optional) This is a reference to a VM.
- image
References List<OvaV2Vm Config Boot Config Uefi Boot Nvram Device Backing Storage Info Data Source Reference Image Reference> - Image Reference
image_reference.image_ext_id: (Required) The globally unique identifier of an image. It should be of type UUID.
- vm
Disk List<OvaReferences V2Vm Config Boot Config Uefi Boot Nvram Device Backing Storage Info Data Source Reference Vm Disk Reference> - Vm Disk Reference
vm_disk_reference.disk_ext_id: (Optional) The globally unique identifier of a VM disk. It should be of type UUID.vm_disk_reference.disk_address: (Optional) Disk address.vm_disk_reference.vm_reference: (Optional) This is a reference to a VM.
- image
References OvaV2Vm Config Boot Config Uefi Boot Nvram Device Backing Storage Info Data Source Reference Image Reference[] - Image Reference
image_reference.image_ext_id: (Required) The globally unique identifier of an image. It should be of type UUID.
- vm
Disk OvaReferences V2Vm Config Boot Config Uefi Boot Nvram Device Backing Storage Info Data Source Reference Vm Disk Reference[] - Vm Disk Reference
vm_disk_reference.disk_ext_id: (Optional) The globally unique identifier of a VM disk. It should be of type UUID.vm_disk_reference.disk_address: (Optional) Disk address.vm_disk_reference.vm_reference: (Optional) This is a reference to a VM.
- image_
references Sequence[OvaV2Vm Config Boot Config Uefi Boot Nvram Device Backing Storage Info Data Source Reference Image Reference] - Image Reference
image_reference.image_ext_id: (Required) The globally unique identifier of an image. It should be of type UUID.
- vm_
disk_ Sequence[Ovareferences V2Vm Config Boot Config Uefi Boot Nvram Device Backing Storage Info Data Source Reference Vm Disk Reference] - Vm Disk Reference
vm_disk_reference.disk_ext_id: (Optional) The globally unique identifier of a VM disk. It should be of type UUID.vm_disk_reference.disk_address: (Optional) Disk address.vm_disk_reference.vm_reference: (Optional) This is a reference to a VM.
- image
References List<Property Map> - Image Reference
image_reference.image_ext_id: (Required) The globally unique identifier of an image. It should be of type UUID.
- vm
Disk List<Property Map>References - Vm Disk Reference
vm_disk_reference.disk_ext_id: (Optional) The globally unique identifier of a VM disk. It should be of type UUID.vm_disk_reference.disk_address: (Optional) Disk address.vm_disk_reference.vm_reference: (Optional) This is a reference to a VM.
OvaV2VmConfigBootConfigUefiBootNvramDeviceBackingStorageInfoDataSourceReferenceImageReference, OvaV2VmConfigBootConfigUefiBootNvramDeviceBackingStorageInfoDataSourceReferenceImageReferenceArgs
- Image
Ext stringId
- Image
Ext stringId
- image_
ext_ stringid
- image
Ext StringId
- image
Ext stringId
- image_
ext_ strid
- image
Ext StringId
OvaV2VmConfigBootConfigUefiBootNvramDeviceBackingStorageInfoDataSourceReferenceVmDiskReference, OvaV2VmConfigBootConfigUefiBootNvramDeviceBackingStorageInfoDataSourceReferenceVmDiskReferenceArgs
- Disk
Addresses List<PiersKarsenbarg. Nutanix. Inputs. Ova V2Vm Config Boot Config Uefi Boot Nvram Device Backing Storage Info Data Source Reference Vm Disk Reference Disk Address> - Disk
Ext stringId - Vm
References List<PiersKarsenbarg. Nutanix. Inputs. Ova V2Vm Config Boot Config Uefi Boot Nvram Device Backing Storage Info Data Source Reference Vm Disk Reference Vm Reference>
OvaV2VmConfigBootConfigUefiBootNvramDeviceBackingStorageInfoDataSourceReferenceVmDiskReferenceDiskAddress, OvaV2VmConfigBootConfigUefiBootNvramDeviceBackingStorageInfoDataSourceReferenceVmDiskReferenceDiskAddressArgs
OvaV2VmConfigBootConfigUefiBootNvramDeviceBackingStorageInfoDataSourceReferenceVmDiskReferenceVmReference, OvaV2VmConfigBootConfigUefiBootNvramDeviceBackingStorageInfoDataSourceReferenceVmDiskReferenceVmReferenceArgs
- Ext
Id string
- Ext
Id string
- ext_
id string
- ext
Id String
- ext
Id string
- ext_
id str
- ext
Id String
OvaV2VmConfigBootConfigUefiBootNvramDeviceBackingStorageInfoStorageConfig, OvaV2VmConfigBootConfigUefiBootNvramDeviceBackingStorageInfoStorageConfigArgs
- Is
Flash boolMode Enabled - Indicates whether the virtual disk is pinned to the hot tier or not.
- Is
Flash boolMode Enabled - Indicates whether the virtual disk is pinned to the hot tier or not.
- is_
flash_ boolmode_ enabled - Indicates whether the virtual disk is pinned to the hot tier or not.
- is
Flash BooleanMode Enabled - Indicates whether the virtual disk is pinned to the hot tier or not.
- is
Flash booleanMode Enabled - Indicates whether the virtual disk is pinned to the hot tier or not.
- is_
flash_ boolmode_ enabled - Indicates whether the virtual disk is pinned to the hot tier or not.
- is
Flash BooleanMode Enabled - Indicates whether the virtual disk is pinned to the hot tier or not.
OvaV2VmConfigBootConfigUefiBootNvramDeviceBackingStorageInfoStorageContainer, OvaV2VmConfigBootConfigUefiBootNvramDeviceBackingStorageInfoStorageContainerArgs
- Ext
Id string
- Ext
Id string
- ext_
id string
- ext
Id String
- ext
Id string
- ext_
id str
- ext
Id String
OvaV2VmConfigCategory, OvaV2VmConfigCategoryArgs
- Ext
Id string - -(Optional) A globally unique identifier of a VM category of type UUID.
- Ext
Id string - -(Optional) A globally unique identifier of a VM category of type UUID.
- ext_
id string - -(Optional) A globally unique identifier of a VM category of type UUID.
- ext
Id String - -(Optional) A globally unique identifier of a VM category of type UUID.
- ext
Id string - -(Optional) A globally unique identifier of a VM category of type UUID.
- ext_
id str - -(Optional) A globally unique identifier of a VM category of type UUID.
- ext
Id String - -(Optional) A globally unique identifier of a VM category of type UUID.
OvaV2VmConfigCdRom, OvaV2VmConfigCdRomArgs
- Backing
Infos List<PiersKarsenbarg. Nutanix. Inputs. Ova V2Vm Config Cd Rom Backing Info> - Storage provided by Nutanix ADSF
- Disk
Addresses List<PiersKarsenbarg. Nutanix. Inputs. Ova V2Vm Config Cd Rom Disk Address> - Virtual Machine disk (VM disk).
- Ext
Id string - Iso
Type string - Type of ISO image inserted in CD-ROM. Valid values "OTHER", "GUEST_TOOLS", "GUEST_CUSTOMIZATION" .
- Backing
Infos []OvaV2Vm Config Cd Rom Backing Info - Storage provided by Nutanix ADSF
- Disk
Addresses []OvaV2Vm Config Cd Rom Disk Address - Virtual Machine disk (VM disk).
- Ext
Id string - Iso
Type string - Type of ISO image inserted in CD-ROM. Valid values "OTHER", "GUEST_TOOLS", "GUEST_CUSTOMIZATION" .
- backing_
infos list(object) - Storage provided by Nutanix ADSF
- disk_
addresses list(object) - Virtual Machine disk (VM disk).
- ext_
id string - iso_
type string - Type of ISO image inserted in CD-ROM. Valid values "OTHER", "GUEST_TOOLS", "GUEST_CUSTOMIZATION" .
- backing
Infos List<OvaV2Vm Config Cd Rom Backing Info> - Storage provided by Nutanix ADSF
- disk
Addresses List<OvaV2Vm Config Cd Rom Disk Address> - Virtual Machine disk (VM disk).
- ext
Id String - iso
Type String - Type of ISO image inserted in CD-ROM. Valid values "OTHER", "GUEST_TOOLS", "GUEST_CUSTOMIZATION" .
- backing
Infos OvaV2Vm Config Cd Rom Backing Info[] - Storage provided by Nutanix ADSF
- disk
Addresses OvaV2Vm Config Cd Rom Disk Address[] - Virtual Machine disk (VM disk).
- ext
Id string - iso
Type string - Type of ISO image inserted in CD-ROM. Valid values "OTHER", "GUEST_TOOLS", "GUEST_CUSTOMIZATION" .
- backing_
infos Sequence[OvaV2Vm Config Cd Rom Backing Info] - Storage provided by Nutanix ADSF
- disk_
addresses Sequence[OvaV2Vm Config Cd Rom Disk Address] - Virtual Machine disk (VM disk).
- ext_
id str - iso_
type str - Type of ISO image inserted in CD-ROM. Valid values "OTHER", "GUEST_TOOLS", "GUEST_CUSTOMIZATION" .
- backing
Infos List<Property Map> - Storage provided by Nutanix ADSF
- disk
Addresses List<Property Map> - Virtual Machine disk (VM disk).
- ext
Id String - iso
Type String - Type of ISO image inserted in CD-ROM. Valid values "OTHER", "GUEST_TOOLS", "GUEST_CUSTOMIZATION" .
OvaV2VmConfigCdRomBackingInfo, OvaV2VmConfigCdRomBackingInfoArgs
- Data
Sources List<PiersKarsenbarg. Nutanix. Inputs. Ova V2Vm Config Cd Rom Backing Info Data Source> - A reference to a disk or image that contains the contents of a disk. container.
- Disk
Ext stringId - Disk
Size intBytes - Size of the disk in Bytes
- Is
Migration boolIn Progress - Storage
Configs List<PiersKarsenbarg. Nutanix. Inputs. Ova V2Vm Config Cd Rom Backing Info Storage Config> - Storage configuration for VM disks
storage_config.is_flash_mode_enabled: Indicates whether the virtual disk is pinned to the hot tier or not.
- Storage
Containers List<PiersKarsenbarg. Nutanix. Inputs. Ova V2Vm Config Cd Rom Backing Info Storage Container> - This reference is for disk level storage container preference. This preference specifies the storage container to which this disk belongs.
- Data
Sources []OvaV2Vm Config Cd Rom Backing Info Data Source - A reference to a disk or image that contains the contents of a disk. container.
- Disk
Ext stringId - Disk
Size intBytes - Size of the disk in Bytes
- Is
Migration boolIn Progress - Storage
Configs []OvaV2Vm Config Cd Rom Backing Info Storage Config - Storage configuration for VM disks
storage_config.is_flash_mode_enabled: Indicates whether the virtual disk is pinned to the hot tier or not.
- Storage
Containers []OvaV2Vm Config Cd Rom Backing Info Storage Container - This reference is for disk level storage container preference. This preference specifies the storage container to which this disk belongs.
- data_
sources list(object) - A reference to a disk or image that contains the contents of a disk. container.
- disk_
ext_ stringid - disk_
size_ numberbytes - Size of the disk in Bytes
- is_
migration_ boolin_ progress - storage_
configs list(object) - Storage configuration for VM disks
storage_config.is_flash_mode_enabled: Indicates whether the virtual disk is pinned to the hot tier or not.
- storage_
containers list(object) - This reference is for disk level storage container preference. This preference specifies the storage container to which this disk belongs.
- data
Sources List<OvaV2Vm Config Cd Rom Backing Info Data Source> - A reference to a disk or image that contains the contents of a disk. container.
- disk
Ext StringId - disk
Size IntegerBytes - Size of the disk in Bytes
- is
Migration BooleanIn Progress - storage
Configs List<OvaV2Vm Config Cd Rom Backing Info Storage Config> - Storage configuration for VM disks
storage_config.is_flash_mode_enabled: Indicates whether the virtual disk is pinned to the hot tier or not.
- storage
Containers List<OvaV2Vm Config Cd Rom Backing Info Storage Container> - This reference is for disk level storage container preference. This preference specifies the storage container to which this disk belongs.
- data
Sources OvaV2Vm Config Cd Rom Backing Info Data Source[] - A reference to a disk or image that contains the contents of a disk. container.
- disk
Ext stringId - disk
Size numberBytes - Size of the disk in Bytes
- is
Migration booleanIn Progress - storage
Configs OvaV2Vm Config Cd Rom Backing Info Storage Config[] - Storage configuration for VM disks
storage_config.is_flash_mode_enabled: Indicates whether the virtual disk is pinned to the hot tier or not.
- storage
Containers OvaV2Vm Config Cd Rom Backing Info Storage Container[] - This reference is for disk level storage container preference. This preference specifies the storage container to which this disk belongs.
- data_
sources Sequence[OvaV2Vm Config Cd Rom Backing Info Data Source] - A reference to a disk or image that contains the contents of a disk. container.
- disk_
ext_ strid - disk_
size_ intbytes - Size of the disk in Bytes
- is_
migration_ boolin_ progress - storage_
configs Sequence[OvaV2Vm Config Cd Rom Backing Info Storage Config] - Storage configuration for VM disks
storage_config.is_flash_mode_enabled: Indicates whether the virtual disk is pinned to the hot tier or not.
- storage_
containers Sequence[OvaV2Vm Config Cd Rom Backing Info Storage Container] - This reference is for disk level storage container preference. This preference specifies the storage container to which this disk belongs.
- data
Sources List<Property Map> - A reference to a disk or image that contains the contents of a disk. container.
- disk
Ext StringId - disk
Size NumberBytes - Size of the disk in Bytes
- is
Migration BooleanIn Progress - storage
Configs List<Property Map> - Storage configuration for VM disks
storage_config.is_flash_mode_enabled: Indicates whether the virtual disk is pinned to the hot tier or not.
- storage
Containers List<Property Map> - This reference is for disk level storage container preference. This preference specifies the storage container to which this disk belongs.
OvaV2VmConfigCdRomBackingInfoDataSource, OvaV2VmConfigCdRomBackingInfoDataSourceArgs
- References
List<Piers
Karsenbarg. Nutanix. Inputs. Ova V2Vm Config Cd Rom Backing Info Data Source Reference> - Reference to image or vm disk
- References
[]Ova
V2Vm Config Cd Rom Backing Info Data Source Reference - Reference to image or vm disk
- references list(object)
- Reference to image or vm disk
- references
List<Ova
V2Vm Config Cd Rom Backing Info Data Source Reference> - Reference to image or vm disk
- references
Ova
V2Vm Config Cd Rom Backing Info Data Source Reference[] - Reference to image or vm disk
- references
Sequence[Ova
V2Vm Config Cd Rom Backing Info Data Source Reference] - Reference to image or vm disk
- references List<Property Map>
- Reference to image or vm disk
OvaV2VmConfigCdRomBackingInfoDataSourceReference, OvaV2VmConfigCdRomBackingInfoDataSourceReferenceArgs
- Image
References List<PiersKarsenbarg. Nutanix. Inputs. Ova V2Vm Config Cd Rom Backing Info Data Source Reference Image Reference> - Image Reference
image_reference.image_ext_id: (Required) The globally unique identifier of an image. It should be of type UUID.
- Vm
Disk List<PiersReferences Karsenbarg. Nutanix. Inputs. Ova V2Vm Config Cd Rom Backing Info Data Source Reference Vm Disk Reference> - Vm Disk Reference
vm_disk_reference.disk_ext_id: (Optional) The globally unique identifier of a VM disk. It should be of type UUID.vm_disk_reference.disk_address: (Optional) Disk address.vm_disk_reference.vm_reference: (Optional) This is a reference to a VM.
- Image
References []OvaV2Vm Config Cd Rom Backing Info Data Source Reference Image Reference - Image Reference
image_reference.image_ext_id: (Required) The globally unique identifier of an image. It should be of type UUID.
- Vm
Disk []OvaReferences V2Vm Config Cd Rom Backing Info Data Source Reference Vm Disk Reference - Vm Disk Reference
vm_disk_reference.disk_ext_id: (Optional) The globally unique identifier of a VM disk. It should be of type UUID.vm_disk_reference.disk_address: (Optional) Disk address.vm_disk_reference.vm_reference: (Optional) This is a reference to a VM.
- image_
references list(object) - Image Reference
image_reference.image_ext_id: (Required) The globally unique identifier of an image. It should be of type UUID.
- vm_
disk_ list(object)references - Vm Disk Reference
vm_disk_reference.disk_ext_id: (Optional) The globally unique identifier of a VM disk. It should be of type UUID.vm_disk_reference.disk_address: (Optional) Disk address.vm_disk_reference.vm_reference: (Optional) This is a reference to a VM.
- image
References List<OvaV2Vm Config Cd Rom Backing Info Data Source Reference Image Reference> - Image Reference
image_reference.image_ext_id: (Required) The globally unique identifier of an image. It should be of type UUID.
- vm
Disk List<OvaReferences V2Vm Config Cd Rom Backing Info Data Source Reference Vm Disk Reference> - Vm Disk Reference
vm_disk_reference.disk_ext_id: (Optional) The globally unique identifier of a VM disk. It should be of type UUID.vm_disk_reference.disk_address: (Optional) Disk address.vm_disk_reference.vm_reference: (Optional) This is a reference to a VM.
- image
References OvaV2Vm Config Cd Rom Backing Info Data Source Reference Image Reference[] - Image Reference
image_reference.image_ext_id: (Required) The globally unique identifier of an image. It should be of type UUID.
- vm
Disk OvaReferences V2Vm Config Cd Rom Backing Info Data Source Reference Vm Disk Reference[] - Vm Disk Reference
vm_disk_reference.disk_ext_id: (Optional) The globally unique identifier of a VM disk. It should be of type UUID.vm_disk_reference.disk_address: (Optional) Disk address.vm_disk_reference.vm_reference: (Optional) This is a reference to a VM.
- image_
references Sequence[OvaV2Vm Config Cd Rom Backing Info Data Source Reference Image Reference] - Image Reference
image_reference.image_ext_id: (Required) The globally unique identifier of an image. It should be of type UUID.
- vm_
disk_ Sequence[Ovareferences V2Vm Config Cd Rom Backing Info Data Source Reference Vm Disk Reference] - Vm Disk Reference
vm_disk_reference.disk_ext_id: (Optional) The globally unique identifier of a VM disk. It should be of type UUID.vm_disk_reference.disk_address: (Optional) Disk address.vm_disk_reference.vm_reference: (Optional) This is a reference to a VM.
- image
References List<Property Map> - Image Reference
image_reference.image_ext_id: (Required) The globally unique identifier of an image. It should be of type UUID.
- vm
Disk List<Property Map>References - Vm Disk Reference
vm_disk_reference.disk_ext_id: (Optional) The globally unique identifier of a VM disk. It should be of type UUID.vm_disk_reference.disk_address: (Optional) Disk address.vm_disk_reference.vm_reference: (Optional) This is a reference to a VM.
OvaV2VmConfigCdRomBackingInfoDataSourceReferenceImageReference, OvaV2VmConfigCdRomBackingInfoDataSourceReferenceImageReferenceArgs
- Image
Ext stringId
- Image
Ext stringId
- image_
ext_ stringid
- image
Ext StringId
- image
Ext stringId
- image_
ext_ strid
- image
Ext StringId
OvaV2VmConfigCdRomBackingInfoDataSourceReferenceVmDiskReference, OvaV2VmConfigCdRomBackingInfoDataSourceReferenceVmDiskReferenceArgs
OvaV2VmConfigCdRomBackingInfoDataSourceReferenceVmDiskReferenceDiskAddress, OvaV2VmConfigCdRomBackingInfoDataSourceReferenceVmDiskReferenceDiskAddressArgs
OvaV2VmConfigCdRomBackingInfoDataSourceReferenceVmDiskReferenceVmReference, OvaV2VmConfigCdRomBackingInfoDataSourceReferenceVmDiskReferenceVmReferenceArgs
- Ext
Id string
- Ext
Id string
- ext_
id string
- ext
Id String
- ext
Id string
- ext_
id str
- ext
Id String
OvaV2VmConfigCdRomBackingInfoStorageConfig, OvaV2VmConfigCdRomBackingInfoStorageConfigArgs
- Is
Flash boolMode Enabled - Indicates whether the virtual disk is pinned to the hot tier or not.
- Is
Flash boolMode Enabled - Indicates whether the virtual disk is pinned to the hot tier or not.
- is_
flash_ boolmode_ enabled - Indicates whether the virtual disk is pinned to the hot tier or not.
- is
Flash BooleanMode Enabled - Indicates whether the virtual disk is pinned to the hot tier or not.
- is
Flash booleanMode Enabled - Indicates whether the virtual disk is pinned to the hot tier or not.
- is_
flash_ boolmode_ enabled - Indicates whether the virtual disk is pinned to the hot tier or not.
- is
Flash BooleanMode Enabled - Indicates whether the virtual disk is pinned to the hot tier or not.
OvaV2VmConfigCdRomBackingInfoStorageContainer, OvaV2VmConfigCdRomBackingInfoStorageContainerArgs
- Ext
Id string
- Ext
Id string
- ext_
id string
- ext
Id String
- ext
Id string
- ext_
id str
- ext
Id String
OvaV2VmConfigCdRomDiskAddress, OvaV2VmConfigCdRomDiskAddressArgs
OvaV2VmConfigCluster, OvaV2VmConfigClusterArgs
- Ext
Id string - -(Optional) The globally unique identifier of a cluster type UUID.
- Ext
Id string - -(Optional) The globally unique identifier of a cluster type UUID.
- ext_
id string - -(Optional) The globally unique identifier of a cluster type UUID.
- ext
Id String - -(Optional) The globally unique identifier of a cluster type UUID.
- ext
Id string - -(Optional) The globally unique identifier of a cluster type UUID.
- ext_
id str - -(Optional) The globally unique identifier of a cluster type UUID.
- ext
Id String - -(Optional) The globally unique identifier of a cluster type UUID.
OvaV2VmConfigDisk, OvaV2VmConfigDiskArgs
- Backing
Infos List<PiersKarsenbarg. Nutanix. Inputs. Ova V2Vm Config Disk Backing Info> - Supporting storage to create virtual disk on.
backing_info.vm_disk:(Optional) backing Info for vmDiskbacking_info.adfs_volume_group_reference: (Required) Volume Group Referencebacking_info.adfs_volume_group_reference.volume_group_ext_id: (Required) The globally unique identifier of an ADSF volume group. It should be of type UUID.
- Disk
Addresses List<PiersKarsenbarg. Nutanix. Inputs. Ova V2Vm Config Disk Disk Address> - Disk address.
disk_address.bus_type: (Required) Bus type for the device. The acceptable values are: SCSI, IDE, PCI, SATA, SPAPR (only PPC).disk_address.index: (Required) Device index on the bus. This field is ignored unless the bus details are specified.
- Ext
Id string
- Backing
Infos []OvaV2Vm Config Disk Backing Info - Supporting storage to create virtual disk on.
backing_info.vm_disk:(Optional) backing Info for vmDiskbacking_info.adfs_volume_group_reference: (Required) Volume Group Referencebacking_info.adfs_volume_group_reference.volume_group_ext_id: (Required) The globally unique identifier of an ADSF volume group. It should be of type UUID.
- Disk
Addresses []OvaV2Vm Config Disk Disk Address - Disk address.
disk_address.bus_type: (Required) Bus type for the device. The acceptable values are: SCSI, IDE, PCI, SATA, SPAPR (only PPC).disk_address.index: (Required) Device index on the bus. This field is ignored unless the bus details are specified.
- Ext
Id string
- backing_
infos list(object) - Supporting storage to create virtual disk on.
backing_info.vm_disk:(Optional) backing Info for vmDiskbacking_info.adfs_volume_group_reference: (Required) Volume Group Referencebacking_info.adfs_volume_group_reference.volume_group_ext_id: (Required) The globally unique identifier of an ADSF volume group. It should be of type UUID.
- disk_
addresses list(object) - Disk address.
disk_address.bus_type: (Required) Bus type for the device. The acceptable values are: SCSI, IDE, PCI, SATA, SPAPR (only PPC).disk_address.index: (Required) Device index on the bus. This field is ignored unless the bus details are specified.
- ext_
id string
- backing
Infos List<OvaV2Vm Config Disk Backing Info> - Supporting storage to create virtual disk on.
backing_info.vm_disk:(Optional) backing Info for vmDiskbacking_info.adfs_volume_group_reference: (Required) Volume Group Referencebacking_info.adfs_volume_group_reference.volume_group_ext_id: (Required) The globally unique identifier of an ADSF volume group. It should be of type UUID.
- disk
Addresses List<OvaV2Vm Config Disk Disk Address> - Disk address.
disk_address.bus_type: (Required) Bus type for the device. The acceptable values are: SCSI, IDE, PCI, SATA, SPAPR (only PPC).disk_address.index: (Required) Device index on the bus. This field is ignored unless the bus details are specified.
- ext
Id String
- backing
Infos OvaV2Vm Config Disk Backing Info[] - Supporting storage to create virtual disk on.
backing_info.vm_disk:(Optional) backing Info for vmDiskbacking_info.adfs_volume_group_reference: (Required) Volume Group Referencebacking_info.adfs_volume_group_reference.volume_group_ext_id: (Required) The globally unique identifier of an ADSF volume group. It should be of type UUID.
- disk
Addresses OvaV2Vm Config Disk Disk Address[] - Disk address.
disk_address.bus_type: (Required) Bus type for the device. The acceptable values are: SCSI, IDE, PCI, SATA, SPAPR (only PPC).disk_address.index: (Required) Device index on the bus. This field is ignored unless the bus details are specified.
- ext
Id string
- backing_
infos Sequence[OvaV2Vm Config Disk Backing Info] - Supporting storage to create virtual disk on.
backing_info.vm_disk:(Optional) backing Info for vmDiskbacking_info.adfs_volume_group_reference: (Required) Volume Group Referencebacking_info.adfs_volume_group_reference.volume_group_ext_id: (Required) The globally unique identifier of an ADSF volume group. It should be of type UUID.
- disk_
addresses Sequence[OvaV2Vm Config Disk Disk Address] - Disk address.
disk_address.bus_type: (Required) Bus type for the device. The acceptable values are: SCSI, IDE, PCI, SATA, SPAPR (only PPC).disk_address.index: (Required) Device index on the bus. This field is ignored unless the bus details are specified.
- ext_
id str
- backing
Infos List<Property Map> - Supporting storage to create virtual disk on.
backing_info.vm_disk:(Optional) backing Info for vmDiskbacking_info.adfs_volume_group_reference: (Required) Volume Group Referencebacking_info.adfs_volume_group_reference.volume_group_ext_id: (Required) The globally unique identifier of an ADSF volume group. It should be of type UUID.
- disk
Addresses List<Property Map> - Disk address.
disk_address.bus_type: (Required) Bus type for the device. The acceptable values are: SCSI, IDE, PCI, SATA, SPAPR (only PPC).disk_address.index: (Required) Device index on the bus. This field is ignored unless the bus details are specified.
- ext
Id String
OvaV2VmConfigDiskBackingInfo, OvaV2VmConfigDiskBackingInfoArgs
OvaV2VmConfigDiskBackingInfoAdfsVolumeGroupReference, OvaV2VmConfigDiskBackingInfoAdfsVolumeGroupReferenceArgs
- Volume
Group stringExt Id
- Volume
Group stringExt Id
- volume_
group_ stringext_ id
- volume
Group StringExt Id
- volume
Group stringExt Id
- volume
Group StringExt Id
OvaV2VmConfigDiskBackingInfoVmDisk, OvaV2VmConfigDiskBackingInfoVmDiskArgs
- Data
Sources List<PiersKarsenbarg. Nutanix. Inputs. Ova V2Vm Config Disk Backing Info Vm Disk Data Source> - Disk
Ext stringId - Disk
Size intBytes - Is
Migration boolIn Progress - Storage
Configs List<PiersKarsenbarg. Nutanix. Inputs. Ova V2Vm Config Disk Backing Info Vm Disk Storage Config> - Storage
Containers List<PiersKarsenbarg. Nutanix. Inputs. Ova V2Vm Config Disk Backing Info Vm Disk Storage Container>
OvaV2VmConfigDiskBackingInfoVmDiskDataSource, OvaV2VmConfigDiskBackingInfoVmDiskDataSourceArgs
- References
List<Piers
Karsenbarg. Nutanix. Inputs. Ova V2Vm Config Disk Backing Info Vm Disk Data Source Reference> - Reference to image or vm disk
- References
[]Ova
V2Vm Config Disk Backing Info Vm Disk Data Source Reference - Reference to image or vm disk
- references list(object)
- Reference to image or vm disk
- references
List<Ova
V2Vm Config Disk Backing Info Vm Disk Data Source Reference> - Reference to image or vm disk
- references
Ova
V2Vm Config Disk Backing Info Vm Disk Data Source Reference[] - Reference to image or vm disk
- references
Sequence[Ova
V2Vm Config Disk Backing Info Vm Disk Data Source Reference] - Reference to image or vm disk
- references List<Property Map>
- Reference to image or vm disk
OvaV2VmConfigDiskBackingInfoVmDiskDataSourceReference, OvaV2VmConfigDiskBackingInfoVmDiskDataSourceReferenceArgs
- Image
References List<PiersKarsenbarg. Nutanix. Inputs. Ova V2Vm Config Disk Backing Info Vm Disk Data Source Reference Image Reference> - Image Reference
image_reference.image_ext_id: (Required) The globally unique identifier of an image. It should be of type UUID.
- Vm
Disk List<PiersReferences Karsenbarg. Nutanix. Inputs. Ova V2Vm Config Disk Backing Info Vm Disk Data Source Reference Vm Disk Reference> - Vm Disk Reference
vm_disk_reference.disk_ext_id: (Optional) The globally unique identifier of a VM disk. It should be of type UUID.vm_disk_reference.disk_address: (Optional) Disk address.vm_disk_reference.vm_reference: (Optional) This is a reference to a VM.
- Image
References []OvaV2Vm Config Disk Backing Info Vm Disk Data Source Reference Image Reference - Image Reference
image_reference.image_ext_id: (Required) The globally unique identifier of an image. It should be of type UUID.
- Vm
Disk []OvaReferences V2Vm Config Disk Backing Info Vm Disk Data Source Reference Vm Disk Reference - Vm Disk Reference
vm_disk_reference.disk_ext_id: (Optional) The globally unique identifier of a VM disk. It should be of type UUID.vm_disk_reference.disk_address: (Optional) Disk address.vm_disk_reference.vm_reference: (Optional) This is a reference to a VM.
- image_
references list(object) - Image Reference
image_reference.image_ext_id: (Required) The globally unique identifier of an image. It should be of type UUID.
- vm_
disk_ list(object)references - Vm Disk Reference
vm_disk_reference.disk_ext_id: (Optional) The globally unique identifier of a VM disk. It should be of type UUID.vm_disk_reference.disk_address: (Optional) Disk address.vm_disk_reference.vm_reference: (Optional) This is a reference to a VM.
- image
References List<OvaV2Vm Config Disk Backing Info Vm Disk Data Source Reference Image Reference> - Image Reference
image_reference.image_ext_id: (Required) The globally unique identifier of an image. It should be of type UUID.
- vm
Disk List<OvaReferences V2Vm Config Disk Backing Info Vm Disk Data Source Reference Vm Disk Reference> - Vm Disk Reference
vm_disk_reference.disk_ext_id: (Optional) The globally unique identifier of a VM disk. It should be of type UUID.vm_disk_reference.disk_address: (Optional) Disk address.vm_disk_reference.vm_reference: (Optional) This is a reference to a VM.
- image
References OvaV2Vm Config Disk Backing Info Vm Disk Data Source Reference Image Reference[] - Image Reference
image_reference.image_ext_id: (Required) The globally unique identifier of an image. It should be of type UUID.
- vm
Disk OvaReferences V2Vm Config Disk Backing Info Vm Disk Data Source Reference Vm Disk Reference[] - Vm Disk Reference
vm_disk_reference.disk_ext_id: (Optional) The globally unique identifier of a VM disk. It should be of type UUID.vm_disk_reference.disk_address: (Optional) Disk address.vm_disk_reference.vm_reference: (Optional) This is a reference to a VM.
- image_
references Sequence[OvaV2Vm Config Disk Backing Info Vm Disk Data Source Reference Image Reference] - Image Reference
image_reference.image_ext_id: (Required) The globally unique identifier of an image. It should be of type UUID.
- vm_
disk_ Sequence[Ovareferences V2Vm Config Disk Backing Info Vm Disk Data Source Reference Vm Disk Reference] - Vm Disk Reference
vm_disk_reference.disk_ext_id: (Optional) The globally unique identifier of a VM disk. It should be of type UUID.vm_disk_reference.disk_address: (Optional) Disk address.vm_disk_reference.vm_reference: (Optional) This is a reference to a VM.
- image
References List<Property Map> - Image Reference
image_reference.image_ext_id: (Required) The globally unique identifier of an image. It should be of type UUID.
- vm
Disk List<Property Map>References - Vm Disk Reference
vm_disk_reference.disk_ext_id: (Optional) The globally unique identifier of a VM disk. It should be of type UUID.vm_disk_reference.disk_address: (Optional) Disk address.vm_disk_reference.vm_reference: (Optional) This is a reference to a VM.
OvaV2VmConfigDiskBackingInfoVmDiskDataSourceReferenceImageReference, OvaV2VmConfigDiskBackingInfoVmDiskDataSourceReferenceImageReferenceArgs
- Image
Ext stringId
- Image
Ext stringId
- image_
ext_ stringid
- image
Ext StringId
- image
Ext stringId
- image_
ext_ strid
- image
Ext StringId
OvaV2VmConfigDiskBackingInfoVmDiskDataSourceReferenceVmDiskReference, OvaV2VmConfigDiskBackingInfoVmDiskDataSourceReferenceVmDiskReferenceArgs
OvaV2VmConfigDiskBackingInfoVmDiskDataSourceReferenceVmDiskReferenceDiskAddress, OvaV2VmConfigDiskBackingInfoVmDiskDataSourceReferenceVmDiskReferenceDiskAddressArgs
OvaV2VmConfigDiskBackingInfoVmDiskDataSourceReferenceVmDiskReferenceVmReference, OvaV2VmConfigDiskBackingInfoVmDiskDataSourceReferenceVmDiskReferenceVmReferenceArgs
- Ext
Id string
- Ext
Id string
- ext_
id string
- ext
Id String
- ext
Id string
- ext_
id str
- ext
Id String
OvaV2VmConfigDiskBackingInfoVmDiskStorageConfig, OvaV2VmConfigDiskBackingInfoVmDiskStorageConfigArgs
- Is
Flash boolMode Enabled - Indicates whether the virtual disk is pinned to the hot tier or not.
- Is
Flash boolMode Enabled - Indicates whether the virtual disk is pinned to the hot tier or not.
- is_
flash_ boolmode_ enabled - Indicates whether the virtual disk is pinned to the hot tier or not.
- is
Flash BooleanMode Enabled - Indicates whether the virtual disk is pinned to the hot tier or not.
- is
Flash booleanMode Enabled - Indicates whether the virtual disk is pinned to the hot tier or not.
- is_
flash_ boolmode_ enabled - Indicates whether the virtual disk is pinned to the hot tier or not.
- is
Flash BooleanMode Enabled - Indicates whether the virtual disk is pinned to the hot tier or not.
OvaV2VmConfigDiskBackingInfoVmDiskStorageContainer, OvaV2VmConfigDiskBackingInfoVmDiskStorageContainerArgs
- Ext
Id string
- Ext
Id string
- ext_
id string
- ext
Id String
- ext
Id string
- ext_
id str
- ext
Id String
OvaV2VmConfigDiskDiskAddress, OvaV2VmConfigDiskDiskAddressArgs
OvaV2VmConfigGpus, OvaV2VmConfigGpusArgs
- Device
Id int - The device Id of the GPU.
- Ext
Id string - Fraction int
- Frame
Buffer intSize Bytes - Guest
Driver stringVersion - Links
List<Piers
Karsenbarg. Nutanix. Inputs. Ova V2Vm Config Gpus Link> - Mode string
- ) The mode of this GPU. Valid values "PASSTHROUGH_GRAPHICS", "PASSTHROUGH_COMPUTE", "VIRTUAL" .
- Name string
- -(Required) Name of the OVA.
- Num
Virtual intDisplay Heads - Pci
Addresses List<PiersKarsenbarg. Nutanix. Inputs. Ova V2Vm Config Gpus Pci Address> - The (S)egment:(B)us:(D)evice.(F)unction hardware address.
- Tenant
Id string - Vendor string
- The vendor of the GPU. Valid values "NVIDIA", "AMD", "INTEL" .
- Device
Id int - The device Id of the GPU.
- Ext
Id string - Fraction int
- Frame
Buffer intSize Bytes - Guest
Driver stringVersion - Links
[]Ova
V2Vm Config Gpus Link - Mode string
- ) The mode of this GPU. Valid values "PASSTHROUGH_GRAPHICS", "PASSTHROUGH_COMPUTE", "VIRTUAL" .
- Name string
- -(Required) Name of the OVA.
- Num
Virtual intDisplay Heads - Pci
Addresses []OvaV2Vm Config Gpus Pci Address - The (S)egment:(B)us:(D)evice.(F)unction hardware address.
- Tenant
Id string - Vendor string
- The vendor of the GPU. Valid values "NVIDIA", "AMD", "INTEL" .
- device_
id number - The device Id of the GPU.
- ext_
id string - fraction number
- frame_
buffer_ numbersize_ bytes - guest_
driver_ stringversion - links list(object)
- mode string
- ) The mode of this GPU. Valid values "PASSTHROUGH_GRAPHICS", "PASSTHROUGH_COMPUTE", "VIRTUAL" .
- name string
- -(Required) Name of the OVA.
- num_
virtual_ numberdisplay_ heads - pci_
addresses list(object) - The (S)egment:(B)us:(D)evice.(F)unction hardware address.
- tenant_
id string - vendor string
- The vendor of the GPU. Valid values "NVIDIA", "AMD", "INTEL" .
- device
Id Integer - The device Id of the GPU.
- ext
Id String - fraction Integer
- frame
Buffer IntegerSize Bytes - guest
Driver StringVersion - links
List<Ova
V2Vm Config Gpus Link> - mode String
- ) The mode of this GPU. Valid values "PASSTHROUGH_GRAPHICS", "PASSTHROUGH_COMPUTE", "VIRTUAL" .
- name String
- -(Required) Name of the OVA.
- num
Virtual IntegerDisplay Heads - pci
Addresses List<OvaV2Vm Config Gpus Pci Address> - The (S)egment:(B)us:(D)evice.(F)unction hardware address.
- tenant
Id String - vendor String
- The vendor of the GPU. Valid values "NVIDIA", "AMD", "INTEL" .
- device
Id number - The device Id of the GPU.
- ext
Id string - fraction number
- frame
Buffer numberSize Bytes - guest
Driver stringVersion - links
Ova
V2Vm Config Gpus Link[] - mode string
- ) The mode of this GPU. Valid values "PASSTHROUGH_GRAPHICS", "PASSTHROUGH_COMPUTE", "VIRTUAL" .
- name string
- -(Required) Name of the OVA.
- num
Virtual numberDisplay Heads - pci
Addresses OvaV2Vm Config Gpus Pci Address[] - The (S)egment:(B)us:(D)evice.(F)unction hardware address.
- tenant
Id string - vendor string
- The vendor of the GPU. Valid values "NVIDIA", "AMD", "INTEL" .
- device_
id int - The device Id of the GPU.
- ext_
id str - fraction int
- frame_
buffer_ intsize_ bytes - guest_
driver_ strversion - links
Sequence[Ova
V2Vm Config Gpus Link] - mode str
- ) The mode of this GPU. Valid values "PASSTHROUGH_GRAPHICS", "PASSTHROUGH_COMPUTE", "VIRTUAL" .
- name str
- -(Required) Name of the OVA.
- num_
virtual_ intdisplay_ heads - pci_
addresses Sequence[OvaV2Vm Config Gpus Pci Address] - The (S)egment:(B)us:(D)evice.(F)unction hardware address.
- tenant_
id str - vendor str
- The vendor of the GPU. Valid values "NVIDIA", "AMD", "INTEL" .
- device
Id Number - The device Id of the GPU.
- ext
Id String - fraction Number
- frame
Buffer NumberSize Bytes - guest
Driver StringVersion - links List<Property Map>
- mode String
- ) The mode of this GPU. Valid values "PASSTHROUGH_GRAPHICS", "PASSTHROUGH_COMPUTE", "VIRTUAL" .
- name String
- -(Required) Name of the OVA.
- num
Virtual NumberDisplay Heads - pci
Addresses List<Property Map> - The (S)egment:(B)us:(D)evice.(F)unction hardware address.
- tenant
Id String - vendor String
- The vendor of the GPU. Valid values "NVIDIA", "AMD", "INTEL" .
OvaV2VmConfigGpusLink, OvaV2VmConfigGpusLinkArgs
OvaV2VmConfigGpusPciAddress, OvaV2VmConfigGpusPciAddressArgs
OvaV2VmConfigGuestCustomization, OvaV2VmConfigGuestCustomizationArgs
- Configs
List<Piers
Karsenbarg. Nutanix. Inputs. Ova V2Vm Config Guest Customization Config> - -(Optional) The Nutanix Guest Tools customization settings.
config.sysprep: -(Optional) Sysprep configconfig.cloud_init: -(Optional) CloudInit Config
- Configs
[]Ova
V2Vm Config Guest Customization Config - -(Optional) The Nutanix Guest Tools customization settings.
config.sysprep: -(Optional) Sysprep configconfig.cloud_init: -(Optional) CloudInit Config
- configs list(object)
- -(Optional) The Nutanix Guest Tools customization settings.
config.sysprep: -(Optional) Sysprep configconfig.cloud_init: -(Optional) CloudInit Config
- configs
List<Ova
V2Vm Config Guest Customization Config> - -(Optional) The Nutanix Guest Tools customization settings.
config.sysprep: -(Optional) Sysprep configconfig.cloud_init: -(Optional) CloudInit Config
- configs
Ova
V2Vm Config Guest Customization Config[] - -(Optional) The Nutanix Guest Tools customization settings.
config.sysprep: -(Optional) Sysprep configconfig.cloud_init: -(Optional) CloudInit Config
- configs
Sequence[Ova
V2Vm Config Guest Customization Config] - -(Optional) The Nutanix Guest Tools customization settings.
config.sysprep: -(Optional) Sysprep configconfig.cloud_init: -(Optional) CloudInit Config
- configs List<Property Map>
- -(Optional) The Nutanix Guest Tools customization settings.
config.sysprep: -(Optional) Sysprep configconfig.cloud_init: -(Optional) CloudInit Config
OvaV2VmConfigGuestCustomizationConfig, OvaV2VmConfigGuestCustomizationConfigArgs
OvaV2VmConfigGuestCustomizationConfigCloudInit, OvaV2VmConfigGuestCustomizationConfigCloudInitArgs
- Cloud
Init List<PiersScripts Karsenbarg. Nutanix. Inputs. Ova V2Vm Config Guest Customization Config Cloud Init Cloud Init Script> - -(Optional) The script to use for cloud-init.
cloud_init_script.user_data: -(Optional) user data objectcloud_init_script.custom_keys: -(Optional) The list of the individual KeyValuePair elements.
- Datasource
Type string - -(Optional) Type of datasource. Default: CONFIG_DRIVE_V2
- Metadata string
- -(Optional) The contents of the metaData configuration for cloud-init. This can be formatted as YAML or JSON. The value must be base64 encoded.
- Cloud
Init []OvaScripts V2Vm Config Guest Customization Config Cloud Init Cloud Init Script - -(Optional) The script to use for cloud-init.
cloud_init_script.user_data: -(Optional) user data objectcloud_init_script.custom_keys: -(Optional) The list of the individual KeyValuePair elements.
- Datasource
Type string - -(Optional) Type of datasource. Default: CONFIG_DRIVE_V2
- Metadata string
- -(Optional) The contents of the metaData configuration for cloud-init. This can be formatted as YAML or JSON. The value must be base64 encoded.
- cloud_
init_ list(object)scripts - -(Optional) The script to use for cloud-init.
cloud_init_script.user_data: -(Optional) user data objectcloud_init_script.custom_keys: -(Optional) The list of the individual KeyValuePair elements.
- datasource_
type string - -(Optional) Type of datasource. Default: CONFIG_DRIVE_V2
- metadata string
- -(Optional) The contents of the metaData configuration for cloud-init. This can be formatted as YAML or JSON. The value must be base64 encoded.
- cloud
Init List<OvaScripts V2Vm Config Guest Customization Config Cloud Init Cloud Init Script> - -(Optional) The script to use for cloud-init.
cloud_init_script.user_data: -(Optional) user data objectcloud_init_script.custom_keys: -(Optional) The list of the individual KeyValuePair elements.
- datasource
Type String - -(Optional) Type of datasource. Default: CONFIG_DRIVE_V2
- metadata String
- -(Optional) The contents of the metaData configuration for cloud-init. This can be formatted as YAML or JSON. The value must be base64 encoded.
- cloud
Init OvaScripts V2Vm Config Guest Customization Config Cloud Init Cloud Init Script[] - -(Optional) The script to use for cloud-init.
cloud_init_script.user_data: -(Optional) user data objectcloud_init_script.custom_keys: -(Optional) The list of the individual KeyValuePair elements.
- datasource
Type string - -(Optional) Type of datasource. Default: CONFIG_DRIVE_V2
- metadata string
- -(Optional) The contents of the metaData configuration for cloud-init. This can be formatted as YAML or JSON. The value must be base64 encoded.
- cloud_
init_ Sequence[Ovascripts V2Vm Config Guest Customization Config Cloud Init Cloud Init Script] - -(Optional) The script to use for cloud-init.
cloud_init_script.user_data: -(Optional) user data objectcloud_init_script.custom_keys: -(Optional) The list of the individual KeyValuePair elements.
- datasource_
type str - -(Optional) Type of datasource. Default: CONFIG_DRIVE_V2
- metadata str
- -(Optional) The contents of the metaData configuration for cloud-init. This can be formatted as YAML or JSON. The value must be base64 encoded.
- cloud
Init List<Property Map>Scripts - -(Optional) The script to use for cloud-init.
cloud_init_script.user_data: -(Optional) user data objectcloud_init_script.custom_keys: -(Optional) The list of the individual KeyValuePair elements.
- datasource
Type String - -(Optional) Type of datasource. Default: CONFIG_DRIVE_V2
- metadata String
- -(Optional) The contents of the metaData configuration for cloud-init. This can be formatted as YAML or JSON. The value must be base64 encoded.
OvaV2VmConfigGuestCustomizationConfigCloudInitCloudInitScript, OvaV2VmConfigGuestCustomizationConfigCloudInitCloudInitScriptArgs
OvaV2VmConfigGuestCustomizationConfigCloudInitCloudInitScriptCustomKeyValue, OvaV2VmConfigGuestCustomizationConfigCloudInitCloudInitScriptCustomKeyValueArgs
OvaV2VmConfigGuestCustomizationConfigCloudInitCloudInitScriptCustomKeyValueKeyValuePair, OvaV2VmConfigGuestCustomizationConfigCloudInitCloudInitScriptCustomKeyValueKeyValuePairArgs
- Name string
- -(Required) Name of the OVA.
- Values
List<Piers
Karsenbarg. Nutanix. Inputs. Ova V2Vm Config Guest Customization Config Cloud Init Cloud Init Script Custom Key Value Key Value Pair Value>
- Name string
- -(Required) Name of the OVA.
- Values
[]Ova
V2Vm Config Guest Customization Config Cloud Init Cloud Init Script Custom Key Value Key Value Pair Value
- name string
- -(Required) Name of the OVA.
- values list(object)
- name String
- -(Required) Name of the OVA.
- values
List<Ova
V2Vm Config Guest Customization Config Cloud Init Cloud Init Script Custom Key Value Key Value Pair Value>
- name string
- -(Required) Name of the OVA.
- values
Ova
V2Vm Config Guest Customization Config Cloud Init Cloud Init Script Custom Key Value Key Value Pair Value[]
- name str
- -(Required) Name of the OVA.
- values
Sequence[Ova
V2Vm Config Guest Customization Config Cloud Init Cloud Init Script Custom Key Value Key Value Pair Value]
- name String
- -(Required) Name of the OVA.
- values List<Property Map>
OvaV2VmConfigGuestCustomizationConfigCloudInitCloudInitScriptCustomKeyValueKeyValuePairValue, OvaV2VmConfigGuestCustomizationConfigCloudInitCloudInitScriptCustomKeyValueKeyValuePairValueArgs
- Boolean bool
- Integer int
- Integer
Lists List<int> - Map
Of List<PiersStrings Karsenbarg. Nutanix. Inputs. Ova V2Vm Config Guest Customization Config Cloud Init Cloud Init Script Custom Key Value Key Value Pair Value Map Of String> - Object Dictionary<string, string>
- String string
- String
Lists List<string>
- Boolean bool
- Integer int
- Integer
Lists []int - Map
Of []OvaStrings V2Vm Config Guest Customization Config Cloud Init Cloud Init Script Custom Key Value Key Value Pair Value Map Of String - Object map[string]string
- String string
- String
Lists []string
- boolean bool
- integer number
- integer_
lists list(number) - map_
of_ list(object)strings - object map(string)
- string string
- string_
lists list(string)
- boolean_ Boolean
- integer Integer
- integer
Lists List<Integer> - map
Of List<OvaStrings V2Vm Config Guest Customization Config Cloud Init Cloud Init Script Custom Key Value Key Value Pair Value Map Of String> - object Map<String,String>
- string String
- string
Lists List<String>
- boolean boolean
- integer number
- integer
Lists number[] - map
Of OvaStrings V2Vm Config Guest Customization Config Cloud Init Cloud Init Script Custom Key Value Key Value Pair Value Map Of String[] - object {[key: string]: string}
- string string
- string
Lists string[]
- boolean bool
- integer int
- integer_
lists Sequence[int] - map_
of_ Sequence[Ovastrings V2Vm Config Guest Customization Config Cloud Init Cloud Init Script Custom Key Value Key Value Pair Value Map Of String] - object Mapping[str, str]
- string str
- string_
lists Sequence[str]
- boolean Boolean
- integer Number
- integer
Lists List<Number> - map
Of List<Property Map>Strings - object Map<String>
- string String
- string
Lists List<String>
OvaV2VmConfigGuestCustomizationConfigCloudInitCloudInitScriptCustomKeyValueKeyValuePairValueMapOfString, OvaV2VmConfigGuestCustomizationConfigCloudInitCloudInitScriptCustomKeyValueKeyValuePairValueMapOfStringArgs
- Map Dictionary<string, string>
- Map map[string]string
- map map(string)
- map Map<String,String>
- map {[key: string]: string}
- map Mapping[str, str]
- map Map<String>
OvaV2VmConfigGuestCustomizationConfigCloudInitCloudInitScriptUserData, OvaV2VmConfigGuestCustomizationConfigCloudInitCloudInitScriptUserDataArgs
- Value string
- Value string
- value string
- value String
- value string
- value str
- value String
OvaV2VmConfigGuestCustomizationConfigSysprep, OvaV2VmConfigGuestCustomizationConfigSysprepArgs
- Install
Type string - -(Optional) Indicates whether the guest will be freshly installed using this unattend configuration, or this unattend configuration will be applied to a pre-prepared image. Default is 'PREPARED'.
- Sysprep
Scripts List<PiersKarsenbarg. Nutanix. Inputs. Ova V2Vm Config Guest Customization Config Sysprep Sysprep Script> - -(Optional) Object either UnattendXml or CustomKeyValues
sysprep_script.unattend_xml: -(Optional) xml objectsysprep_script.custom_key_values: -(Optional) The list of the individual KeyValuePair elements.
- Install
Type string - -(Optional) Indicates whether the guest will be freshly installed using this unattend configuration, or this unattend configuration will be applied to a pre-prepared image. Default is 'PREPARED'.
- Sysprep
Scripts []OvaV2Vm Config Guest Customization Config Sysprep Sysprep Script - -(Optional) Object either UnattendXml or CustomKeyValues
sysprep_script.unattend_xml: -(Optional) xml objectsysprep_script.custom_key_values: -(Optional) The list of the individual KeyValuePair elements.
- install_
type string - -(Optional) Indicates whether the guest will be freshly installed using this unattend configuration, or this unattend configuration will be applied to a pre-prepared image. Default is 'PREPARED'.
- sysprep_
scripts list(object) - -(Optional) Object either UnattendXml or CustomKeyValues
sysprep_script.unattend_xml: -(Optional) xml objectsysprep_script.custom_key_values: -(Optional) The list of the individual KeyValuePair elements.
- install
Type String - -(Optional) Indicates whether the guest will be freshly installed using this unattend configuration, or this unattend configuration will be applied to a pre-prepared image. Default is 'PREPARED'.
- sysprep
Scripts List<OvaV2Vm Config Guest Customization Config Sysprep Sysprep Script> - -(Optional) Object either UnattendXml or CustomKeyValues
sysprep_script.unattend_xml: -(Optional) xml objectsysprep_script.custom_key_values: -(Optional) The list of the individual KeyValuePair elements.
- install
Type string - -(Optional) Indicates whether the guest will be freshly installed using this unattend configuration, or this unattend configuration will be applied to a pre-prepared image. Default is 'PREPARED'.
- sysprep
Scripts OvaV2Vm Config Guest Customization Config Sysprep Sysprep Script[] - -(Optional) Object either UnattendXml or CustomKeyValues
sysprep_script.unattend_xml: -(Optional) xml objectsysprep_script.custom_key_values: -(Optional) The list of the individual KeyValuePair elements.
- install_
type str - -(Optional) Indicates whether the guest will be freshly installed using this unattend configuration, or this unattend configuration will be applied to a pre-prepared image. Default is 'PREPARED'.
- sysprep_
scripts Sequence[OvaV2Vm Config Guest Customization Config Sysprep Sysprep Script] - -(Optional) Object either UnattendXml or CustomKeyValues
sysprep_script.unattend_xml: -(Optional) xml objectsysprep_script.custom_key_values: -(Optional) The list of the individual KeyValuePair elements.
- install
Type String - -(Optional) Indicates whether the guest will be freshly installed using this unattend configuration, or this unattend configuration will be applied to a pre-prepared image. Default is 'PREPARED'.
- sysprep
Scripts List<Property Map> - -(Optional) Object either UnattendXml or CustomKeyValues
sysprep_script.unattend_xml: -(Optional) xml objectsysprep_script.custom_key_values: -(Optional) The list of the individual KeyValuePair elements.
OvaV2VmConfigGuestCustomizationConfigSysprepSysprepScript, OvaV2VmConfigGuestCustomizationConfigSysprepSysprepScriptArgs
OvaV2VmConfigGuestCustomizationConfigSysprepSysprepScriptCustomKeyValue, OvaV2VmConfigGuestCustomizationConfigSysprepSysprepScriptCustomKeyValueArgs
OvaV2VmConfigGuestCustomizationConfigSysprepSysprepScriptCustomKeyValueKeyValuePair, OvaV2VmConfigGuestCustomizationConfigSysprepSysprepScriptCustomKeyValueKeyValuePairArgs
- Name string
- -(Required) Name of the OVA.
- Values
List<Piers
Karsenbarg. Nutanix. Inputs. Ova V2Vm Config Guest Customization Config Sysprep Sysprep Script Custom Key Value Key Value Pair Value>
- Name string
- -(Required) Name of the OVA.
- Values
[]Ova
V2Vm Config Guest Customization Config Sysprep Sysprep Script Custom Key Value Key Value Pair Value
- name string
- -(Required) Name of the OVA.
- values list(object)
- name String
- -(Required) Name of the OVA.
- values
List<Ova
V2Vm Config Guest Customization Config Sysprep Sysprep Script Custom Key Value Key Value Pair Value>
- name string
- -(Required) Name of the OVA.
- values
Ova
V2Vm Config Guest Customization Config Sysprep Sysprep Script Custom Key Value Key Value Pair Value[]
- name str
- -(Required) Name of the OVA.
- values
Sequence[Ova
V2Vm Config Guest Customization Config Sysprep Sysprep Script Custom Key Value Key Value Pair Value]
- name String
- -(Required) Name of the OVA.
- values List<Property Map>
OvaV2VmConfigGuestCustomizationConfigSysprepSysprepScriptCustomKeyValueKeyValuePairValue, OvaV2VmConfigGuestCustomizationConfigSysprepSysprepScriptCustomKeyValueKeyValuePairValueArgs
- Boolean bool
- Integer int
- Integer
Lists List<int> - Map
Of List<PiersStrings Karsenbarg. Nutanix. Inputs. Ova V2Vm Config Guest Customization Config Sysprep Sysprep Script Custom Key Value Key Value Pair Value Map Of String> - Object Dictionary<string, string>
- String string
- String
Lists List<string>
- Boolean bool
- Integer int
- Integer
Lists []int - Map
Of []OvaStrings V2Vm Config Guest Customization Config Sysprep Sysprep Script Custom Key Value Key Value Pair Value Map Of String - Object map[string]string
- String string
- String
Lists []string
- boolean bool
- integer number
- integer_
lists list(number) - map_
of_ list(object)strings - object map(string)
- string string
- string_
lists list(string)
- boolean_ Boolean
- integer Integer
- integer
Lists List<Integer> - map
Of List<OvaStrings V2Vm Config Guest Customization Config Sysprep Sysprep Script Custom Key Value Key Value Pair Value Map Of String> - object Map<String,String>
- string String
- string
Lists List<String>
- boolean boolean
- integer number
- integer
Lists number[] - map
Of OvaStrings V2Vm Config Guest Customization Config Sysprep Sysprep Script Custom Key Value Key Value Pair Value Map Of String[] - object {[key: string]: string}
- string string
- string
Lists string[]
- boolean bool
- integer int
- integer_
lists Sequence[int] - map_
of_ Sequence[Ovastrings V2Vm Config Guest Customization Config Sysprep Sysprep Script Custom Key Value Key Value Pair Value Map Of String] - object Mapping[str, str]
- string str
- string_
lists Sequence[str]
- boolean Boolean
- integer Number
- integer
Lists List<Number> - map
Of List<Property Map>Strings - object Map<String>
- string String
- string
Lists List<String>
OvaV2VmConfigGuestCustomizationConfigSysprepSysprepScriptCustomKeyValueKeyValuePairValueMapOfString, OvaV2VmConfigGuestCustomizationConfigSysprepSysprepScriptCustomKeyValueKeyValuePairValueMapOfStringArgs
- Map Dictionary<string, string>
- Map map[string]string
- map map(string)
- map Map<String,String>
- map {[key: string]: string}
- map Mapping[str, str]
- map Map<String>
OvaV2VmConfigGuestCustomizationConfigSysprepSysprepScriptUnattendXml, OvaV2VmConfigGuestCustomizationConfigSysprepSysprepScriptUnattendXmlArgs
- Value string
- Value string
- value string
- value String
- value string
- value str
- value String
OvaV2VmConfigGuestTool, OvaV2VmConfigGuestToolArgs
- Available
Version string - Capabilities List<string>
- -(Optional) The list of the application names that are enabled on the guest VM.
- Guest
Os stringVersion - Is
Enabled bool - -(Optional) Indicates whether Nutanix Guest Tools is enabled or not.
- Is
Installed bool - Is
Iso boolInserted - Is
Reachable bool - Is
Vm boolMobility Drivers Installed - Is
Vss boolSnapshot Capable - Version string
- Available
Version string - Capabilities []string
- -(Optional) The list of the application names that are enabled on the guest VM.
- Guest
Os stringVersion - Is
Enabled bool - -(Optional) Indicates whether Nutanix Guest Tools is enabled or not.
- Is
Installed bool - Is
Iso boolInserted - Is
Reachable bool - Is
Vm boolMobility Drivers Installed - Is
Vss boolSnapshot Capable - Version string
- available_
version string - capabilities list(string)
- -(Optional) The list of the application names that are enabled on the guest VM.
- guest_
os_ stringversion - is_
enabled bool - -(Optional) Indicates whether Nutanix Guest Tools is enabled or not.
- is_
installed bool - is_
iso_ boolinserted - is_
reachable bool - is_
vm_ boolmobility_ drivers_ installed - is_
vss_ boolsnapshot_ capable - version string
- available
Version String - capabilities List<String>
- -(Optional) The list of the application names that are enabled on the guest VM.
- guest
Os StringVersion - is
Enabled Boolean - -(Optional) Indicates whether Nutanix Guest Tools is enabled or not.
- is
Installed Boolean - is
Iso BooleanInserted - is
Reachable Boolean - is
Vm BooleanMobility Drivers Installed - is
Vss BooleanSnapshot Capable - version String
- available
Version string - capabilities string[]
- -(Optional) The list of the application names that are enabled on the guest VM.
- guest
Os stringVersion - is
Enabled boolean - -(Optional) Indicates whether Nutanix Guest Tools is enabled or not.
- is
Installed boolean - is
Iso booleanInserted - is
Reachable boolean - is
Vm booleanMobility Drivers Installed - is
Vss booleanSnapshot Capable - version string
- available_
version str - capabilities Sequence[str]
- -(Optional) The list of the application names that are enabled on the guest VM.
- guest_
os_ strversion - is_
enabled bool - -(Optional) Indicates whether Nutanix Guest Tools is enabled or not.
- is_
installed bool - is_
iso_ boolinserted - is_
reachable bool - is_
vm_ boolmobility_ drivers_ installed - is_
vss_ boolsnapshot_ capable - version str
- available
Version String - capabilities List<String>
- -(Optional) The list of the application names that are enabled on the guest VM.
- guest
Os StringVersion - is
Enabled Boolean - -(Optional) Indicates whether Nutanix Guest Tools is enabled or not.
- is
Installed Boolean - is
Iso BooleanInserted - is
Reachable Boolean - is
Vm BooleanMobility Drivers Installed - is
Vss BooleanSnapshot Capable - version String
OvaV2VmConfigHost, OvaV2VmConfigHostArgs
- Ext
Id string - -(Optional) A globally unique identifier of a host of type UUID.
- Ext
Id string - -(Optional) A globally unique identifier of a host of type UUID.
- ext_
id string - -(Optional) A globally unique identifier of a host of type UUID.
- ext
Id String - -(Optional) A globally unique identifier of a host of type UUID.
- ext
Id string - -(Optional) A globally unique identifier of a host of type UUID.
- ext_
id str - -(Optional) A globally unique identifier of a host of type UUID.
- ext
Id String - -(Optional) A globally unique identifier of a host of type UUID.
OvaV2VmConfigNic, OvaV2VmConfigNicArgs
- Backing
Infos List<PiersKarsenbarg. Nutanix. Inputs. Ova V2Vm Config Nic Backing Info> - Use
nic_backing_info.virtual_ethernet_nicinstead. - Ext
Id string - Network
Infos List<PiersKarsenbarg. Nutanix. Inputs. Ova V2Vm Config Nic Network Info> - Use
nic_network_info.virtual_ethernet_nic_network_infoinstead. - Nic
Backing PiersInfo Karsenbarg. Nutanix. Inputs. Ova V2Vm Config Nic Nic Backing Info - New NIC backing info (v2.4.1+). One of
virtualEthernetNic,sriovNic,dpOffloadNic. - Nic
Network PiersInfo Karsenbarg. Nutanix. Inputs. Ova V2Vm Config Nic Nic Network Info - New NIC network info (v2.4.1+). One of
virtualEthernetNicNetworkInfo,sriovNicNetworkInfo,dpOffloadNicNetworkInfo.
- Backing
Infos []OvaV2Vm Config Nic Backing Info - Use
nic_backing_info.virtual_ethernet_nicinstead. - Ext
Id string - Network
Infos []OvaV2Vm Config Nic Network Info - Use
nic_network_info.virtual_ethernet_nic_network_infoinstead. - Nic
Backing OvaInfo V2Vm Config Nic Nic Backing Info - New NIC backing info (v2.4.1+). One of
virtualEthernetNic,sriovNic,dpOffloadNic. - Nic
Network OvaInfo V2Vm Config Nic Nic Network Info - New NIC network info (v2.4.1+). One of
virtualEthernetNicNetworkInfo,sriovNicNetworkInfo,dpOffloadNicNetworkInfo.
- backing_
infos list(object) - Use
nic_backing_info.virtual_ethernet_nicinstead. - ext_
id string - network_
infos list(object) - Use
nic_network_info.virtual_ethernet_nic_network_infoinstead. - nic_
backing_ objectinfo - New NIC backing info (v2.4.1+). One of
virtualEthernetNic,sriovNic,dpOffloadNic. - nic_
network_ objectinfo - New NIC network info (v2.4.1+). One of
virtualEthernetNicNetworkInfo,sriovNicNetworkInfo,dpOffloadNicNetworkInfo.
- backing
Infos List<OvaV2Vm Config Nic Backing Info> - Use
nic_backing_info.virtual_ethernet_nicinstead. - ext
Id String - network
Infos List<OvaV2Vm Config Nic Network Info> - Use
nic_network_info.virtual_ethernet_nic_network_infoinstead. - nic
Backing OvaInfo V2Vm Config Nic Nic Backing Info - New NIC backing info (v2.4.1+). One of
virtualEthernetNic,sriovNic,dpOffloadNic. - nic
Network OvaInfo V2Vm Config Nic Nic Network Info - New NIC network info (v2.4.1+). One of
virtualEthernetNicNetworkInfo,sriovNicNetworkInfo,dpOffloadNicNetworkInfo.
- backing
Infos OvaV2Vm Config Nic Backing Info[] - Use
nic_backing_info.virtual_ethernet_nicinstead. - ext
Id string - network
Infos OvaV2Vm Config Nic Network Info[] - Use
nic_network_info.virtual_ethernet_nic_network_infoinstead. - nic
Backing OvaInfo V2Vm Config Nic Nic Backing Info - New NIC backing info (v2.4.1+). One of
virtualEthernetNic,sriovNic,dpOffloadNic. - nic
Network OvaInfo V2Vm Config Nic Nic Network Info - New NIC network info (v2.4.1+). One of
virtualEthernetNicNetworkInfo,sriovNicNetworkInfo,dpOffloadNicNetworkInfo.
- backing_
infos Sequence[OvaV2Vm Config Nic Backing Info] - Use
nic_backing_info.virtual_ethernet_nicinstead. - ext_
id str - network_
infos Sequence[OvaV2Vm Config Nic Network Info] - Use
nic_network_info.virtual_ethernet_nic_network_infoinstead. - nic_
backing_ Ovainfo V2Vm Config Nic Nic Backing Info - New NIC backing info (v2.4.1+). One of
virtualEthernetNic,sriovNic,dpOffloadNic. - nic_
network_ Ovainfo V2Vm Config Nic Nic Network Info - New NIC network info (v2.4.1+). One of
virtualEthernetNicNetworkInfo,sriovNicNetworkInfo,dpOffloadNicNetworkInfo.
- backing
Infos List<Property Map> - Use
nic_backing_info.virtual_ethernet_nicinstead. - ext
Id String - network
Infos List<Property Map> - Use
nic_network_info.virtual_ethernet_nic_network_infoinstead. - nic
Backing Property MapInfo - New NIC backing info (v2.4.1+). One of
virtualEthernetNic,sriovNic,dpOffloadNic. - nic
Network Property MapInfo - New NIC network info (v2.4.1+). One of
virtualEthernetNicNetworkInfo,sriovNicNetworkInfo,dpOffloadNicNetworkInfo.
OvaV2VmConfigNicBackingInfo, OvaV2VmConfigNicBackingInfoArgs
- Is
Connected bool - Mac
Address string - MAC address of the emulated NIC.
- Model string
- Options for the NIC emulation. Valid values "VIRTIO" , "E1000".
- Num
Queues int - The number of Tx/Rx queue pairs for this NIC. Default is 1.
- Is
Connected bool - Mac
Address string - MAC address of the emulated NIC.
- Model string
- Options for the NIC emulation. Valid values "VIRTIO" , "E1000".
- Num
Queues int - The number of Tx/Rx queue pairs for this NIC. Default is 1.
- is_
connected bool - mac_
address string - MAC address of the emulated NIC.
- model string
- Options for the NIC emulation. Valid values "VIRTIO" , "E1000".
- num_
queues number - The number of Tx/Rx queue pairs for this NIC. Default is 1.
- is
Connected Boolean - mac
Address String - MAC address of the emulated NIC.
- model String
- Options for the NIC emulation. Valid values "VIRTIO" , "E1000".
- num
Queues Integer - The number of Tx/Rx queue pairs for this NIC. Default is 1.
- is
Connected boolean - mac
Address string - MAC address of the emulated NIC.
- model string
- Options for the NIC emulation. Valid values "VIRTIO" , "E1000".
- num
Queues number - The number of Tx/Rx queue pairs for this NIC. Default is 1.
- is_
connected bool - mac_
address str - MAC address of the emulated NIC.
- model str
- Options for the NIC emulation. Valid values "VIRTIO" , "E1000".
- num_
queues int - The number of Tx/Rx queue pairs for this NIC. Default is 1.
- is
Connected Boolean - mac
Address String - MAC address of the emulated NIC.
- model String
- Options for the NIC emulation. Valid values "VIRTIO" , "E1000".
- num
Queues Number - The number of Tx/Rx queue pairs for this NIC. Default is 1.
OvaV2VmConfigNicNetworkInfo, OvaV2VmConfigNicNetworkInfoArgs
- Ipv4Configs
List<Piers
Karsenbarg. Nutanix. Inputs. Ova V2Vm Config Nic Network Info Ipv4Config> - The IP address configurations.
- Ipv4Infos
List<Piers
Karsenbarg. Nutanix. Inputs. Ova V2Vm Config Nic Network Info Ipv4Info> - Network
Function List<PiersChains Karsenbarg. Nutanix. Inputs. Ova V2Vm Config Nic Network Info Network Function Chain> - The network function chain associates with the NIC. Only valid if nicType is NORMAL_NIC.
- Network
Function stringNic Type - The type of this Network function NIC. Defaults to INGRESS.
- Nic
Type string - NIC type. Valid values "SPAN_DESTINATION_NIC", "NORMAL_NIC", "DIRECT_NIC", "NETWORK_FUNCTION_NIC" .
- Should
Allow boolUnknown Macs - Indicates whether an unknown unicast traffic is forwarded to this NIC or not. This is applicable only for the NICs on the overlay subnets.
- Subnets
List<Piers
Karsenbarg. Nutanix. Inputs. Ova V2Vm Config Nic Network Info Subnet> - Network identifier for this adapter. Only valid if nicType is NORMAL_NIC or DIRECT_NIC
subnet.ext_id: (Optional) The globally unique identifier of a subnet of type UUID.
- Trunked
Vlans List<int> - List of networks to trunk if VLAN mode is marked as TRUNKED. If empty and VLAN mode is set to TRUNKED, all the VLANs are trunked.
- Vlan
Mode string - all the virtual NICs are created in ACCESS mode, which permits only one VLAN per virtual network. TRUNKED mode allows multiple VLANs on a single VM NIC for network-aware user VMs.
- Ipv4Configs
[]Ova
V2Vm Config Nic Network Info Ipv4Config - The IP address configurations.
- Ipv4Infos
[]Ova
V2Vm Config Nic Network Info Ipv4Info - Network
Function []OvaChains V2Vm Config Nic Network Info Network Function Chain - The network function chain associates with the NIC. Only valid if nicType is NORMAL_NIC.
- Network
Function stringNic Type - The type of this Network function NIC. Defaults to INGRESS.
- Nic
Type string - NIC type. Valid values "SPAN_DESTINATION_NIC", "NORMAL_NIC", "DIRECT_NIC", "NETWORK_FUNCTION_NIC" .
- Should
Allow boolUnknown Macs - Indicates whether an unknown unicast traffic is forwarded to this NIC or not. This is applicable only for the NICs on the overlay subnets.
- Subnets
[]Ova
V2Vm Config Nic Network Info Subnet - Network identifier for this adapter. Only valid if nicType is NORMAL_NIC or DIRECT_NIC
subnet.ext_id: (Optional) The globally unique identifier of a subnet of type UUID.
- Trunked
Vlans []int - List of networks to trunk if VLAN mode is marked as TRUNKED. If empty and VLAN mode is set to TRUNKED, all the VLANs are trunked.
- Vlan
Mode string - all the virtual NICs are created in ACCESS mode, which permits only one VLAN per virtual network. TRUNKED mode allows multiple VLANs on a single VM NIC for network-aware user VMs.
- ipv4_
configs list(object) - The IP address configurations.
- ipv4_
infos list(object) - network_
function_ list(object)chains - The network function chain associates with the NIC. Only valid if nicType is NORMAL_NIC.
- network_
function_ stringnic_ type - The type of this Network function NIC. Defaults to INGRESS.
- nic_
type string - NIC type. Valid values "SPAN_DESTINATION_NIC", "NORMAL_NIC", "DIRECT_NIC", "NETWORK_FUNCTION_NIC" .
- should_
allow_ boolunknown_ macs - Indicates whether an unknown unicast traffic is forwarded to this NIC or not. This is applicable only for the NICs on the overlay subnets.
- subnets list(object)
- Network identifier for this adapter. Only valid if nicType is NORMAL_NIC or DIRECT_NIC
subnet.ext_id: (Optional) The globally unique identifier of a subnet of type UUID.
- trunked_
vlans list(number) - List of networks to trunk if VLAN mode is marked as TRUNKED. If empty and VLAN mode is set to TRUNKED, all the VLANs are trunked.
- vlan_
mode string - all the virtual NICs are created in ACCESS mode, which permits only one VLAN per virtual network. TRUNKED mode allows multiple VLANs on a single VM NIC for network-aware user VMs.
- ipv4Configs
List<Ova
V2Vm Config Nic Network Info Ipv4Config> - The IP address configurations.
- ipv4Infos
List<Ova
V2Vm Config Nic Network Info Ipv4Info> - network
Function List<OvaChains V2Vm Config Nic Network Info Network Function Chain> - The network function chain associates with the NIC. Only valid if nicType is NORMAL_NIC.
- network
Function StringNic Type - The type of this Network function NIC. Defaults to INGRESS.
- nic
Type String - NIC type. Valid values "SPAN_DESTINATION_NIC", "NORMAL_NIC", "DIRECT_NIC", "NETWORK_FUNCTION_NIC" .
- should
Allow BooleanUnknown Macs - Indicates whether an unknown unicast traffic is forwarded to this NIC or not. This is applicable only for the NICs on the overlay subnets.
- subnets
List<Ova
V2Vm Config Nic Network Info Subnet> - Network identifier for this adapter. Only valid if nicType is NORMAL_NIC or DIRECT_NIC
subnet.ext_id: (Optional) The globally unique identifier of a subnet of type UUID.
- trunked
Vlans List<Integer> - List of networks to trunk if VLAN mode is marked as TRUNKED. If empty and VLAN mode is set to TRUNKED, all the VLANs are trunked.
- vlan
Mode String - all the virtual NICs are created in ACCESS mode, which permits only one VLAN per virtual network. TRUNKED mode allows multiple VLANs on a single VM NIC for network-aware user VMs.
- ipv4Configs
Ova
V2Vm Config Nic Network Info Ipv4Config[] - The IP address configurations.
- ipv4Infos
Ova
V2Vm Config Nic Network Info Ipv4Info[] - network
Function OvaChains V2Vm Config Nic Network Info Network Function Chain[] - The network function chain associates with the NIC. Only valid if nicType is NORMAL_NIC.
- network
Function stringNic Type - The type of this Network function NIC. Defaults to INGRESS.
- nic
Type string - NIC type. Valid values "SPAN_DESTINATION_NIC", "NORMAL_NIC", "DIRECT_NIC", "NETWORK_FUNCTION_NIC" .
- should
Allow booleanUnknown Macs - Indicates whether an unknown unicast traffic is forwarded to this NIC or not. This is applicable only for the NICs on the overlay subnets.
- subnets
Ova
V2Vm Config Nic Network Info Subnet[] - Network identifier for this adapter. Only valid if nicType is NORMAL_NIC or DIRECT_NIC
subnet.ext_id: (Optional) The globally unique identifier of a subnet of type UUID.
- trunked
Vlans number[] - List of networks to trunk if VLAN mode is marked as TRUNKED. If empty and VLAN mode is set to TRUNKED, all the VLANs are trunked.
- vlan
Mode string - all the virtual NICs are created in ACCESS mode, which permits only one VLAN per virtual network. TRUNKED mode allows multiple VLANs on a single VM NIC for network-aware user VMs.
- ipv4_
configs Sequence[OvaV2Vm Config Nic Network Info Ipv4Config] - The IP address configurations.
- ipv4_
infos Sequence[OvaV2Vm Config Nic Network Info Ipv4Info] - network_
function_ Sequence[Ovachains V2Vm Config Nic Network Info Network Function Chain] - The network function chain associates with the NIC. Only valid if nicType is NORMAL_NIC.
- network_
function_ strnic_ type - The type of this Network function NIC. Defaults to INGRESS.
- nic_
type str - NIC type. Valid values "SPAN_DESTINATION_NIC", "NORMAL_NIC", "DIRECT_NIC", "NETWORK_FUNCTION_NIC" .
- should_
allow_ boolunknown_ macs - Indicates whether an unknown unicast traffic is forwarded to this NIC or not. This is applicable only for the NICs on the overlay subnets.
- subnets
Sequence[Ova
V2Vm Config Nic Network Info Subnet] - Network identifier for this adapter. Only valid if nicType is NORMAL_NIC or DIRECT_NIC
subnet.ext_id: (Optional) The globally unique identifier of a subnet of type UUID.
- trunked_
vlans Sequence[int] - List of networks to trunk if VLAN mode is marked as TRUNKED. If empty and VLAN mode is set to TRUNKED, all the VLANs are trunked.
- vlan_
mode str - all the virtual NICs are created in ACCESS mode, which permits only one VLAN per virtual network. TRUNKED mode allows multiple VLANs on a single VM NIC for network-aware user VMs.
- ipv4Configs List<Property Map>
- The IP address configurations.
- ipv4Infos List<Property Map>
- network
Function List<Property Map>Chains - The network function chain associates with the NIC. Only valid if nicType is NORMAL_NIC.
- network
Function StringNic Type - The type of this Network function NIC. Defaults to INGRESS.
- nic
Type String - NIC type. Valid values "SPAN_DESTINATION_NIC", "NORMAL_NIC", "DIRECT_NIC", "NETWORK_FUNCTION_NIC" .
- should
Allow BooleanUnknown Macs - Indicates whether an unknown unicast traffic is forwarded to this NIC or not. This is applicable only for the NICs on the overlay subnets.
- subnets List<Property Map>
- Network identifier for this adapter. Only valid if nicType is NORMAL_NIC or DIRECT_NIC
subnet.ext_id: (Optional) The globally unique identifier of a subnet of type UUID.
- trunked
Vlans List<Number> - List of networks to trunk if VLAN mode is marked as TRUNKED. If empty and VLAN mode is set to TRUNKED, all the VLANs are trunked.
- vlan
Mode String - all the virtual NICs are created in ACCESS mode, which permits only one VLAN per virtual network. TRUNKED mode allows multiple VLANs on a single VM NIC for network-aware user VMs.
OvaV2VmConfigNicNetworkInfoIpv4Config, OvaV2VmConfigNicNetworkInfoIpv4ConfigArgs
- Ip
Addresses List<PiersKarsenbarg. Nutanix. Inputs. Ova V2Vm Config Nic Network Info Ipv4Config Ip Address> - The IP address of the NIC.
- Secondary
Ip List<PiersAddress Lists Karsenbarg. Nutanix. Inputs. Ova V2Vm Config Nic Network Info Ipv4Config Secondary Ip Address List> - Secondary IP addresses for the NIC.
- Should
Assign boolIp - If set to true (default value), an IP address must be assigned to the VM NIC - either the one explicitly specified by the user or allocated automatically by the IPAM service by not specifying the IP address. If false, then no IP assignment is required for this VM NIC.
- Ip
Addresses []OvaV2Vm Config Nic Network Info Ipv4Config Ip Address - The IP address of the NIC.
- Secondary
Ip []OvaAddress Lists V2Vm Config Nic Network Info Ipv4Config Secondary Ip Address List - Secondary IP addresses for the NIC.
- Should
Assign boolIp - If set to true (default value), an IP address must be assigned to the VM NIC - either the one explicitly specified by the user or allocated automatically by the IPAM service by not specifying the IP address. If false, then no IP assignment is required for this VM NIC.
- ip_
addresses list(object) - The IP address of the NIC.
- secondary_
ip_ list(object)address_ lists - Secondary IP addresses for the NIC.
- should_
assign_ boolip - If set to true (default value), an IP address must be assigned to the VM NIC - either the one explicitly specified by the user or allocated automatically by the IPAM service by not specifying the IP address. If false, then no IP assignment is required for this VM NIC.
- ip
Addresses List<OvaV2Vm Config Nic Network Info Ipv4Config Ip Address> - The IP address of the NIC.
- secondary
Ip List<OvaAddress Lists V2Vm Config Nic Network Info Ipv4Config Secondary Ip Address List> - Secondary IP addresses for the NIC.
- should
Assign BooleanIp - If set to true (default value), an IP address must be assigned to the VM NIC - either the one explicitly specified by the user or allocated automatically by the IPAM service by not specifying the IP address. If false, then no IP assignment is required for this VM NIC.
- ip
Addresses OvaV2Vm Config Nic Network Info Ipv4Config Ip Address[] - The IP address of the NIC.
- secondary
Ip OvaAddress Lists V2Vm Config Nic Network Info Ipv4Config Secondary Ip Address List[] - Secondary IP addresses for the NIC.
- should
Assign booleanIp - If set to true (default value), an IP address must be assigned to the VM NIC - either the one explicitly specified by the user or allocated automatically by the IPAM service by not specifying the IP address. If false, then no IP assignment is required for this VM NIC.
- ip_
addresses Sequence[OvaV2Vm Config Nic Network Info Ipv4Config Ip Address] - The IP address of the NIC.
- secondary_
ip_ Sequence[Ovaaddress_ lists V2Vm Config Nic Network Info Ipv4Config Secondary Ip Address List] - Secondary IP addresses for the NIC.
- should_
assign_ boolip - If set to true (default value), an IP address must be assigned to the VM NIC - either the one explicitly specified by the user or allocated automatically by the IPAM service by not specifying the IP address. If false, then no IP assignment is required for this VM NIC.
- ip
Addresses List<Property Map> - The IP address of the NIC.
- secondary
Ip List<Property Map>Address Lists - Secondary IP addresses for the NIC.
- should
Assign BooleanIp - If set to true (default value), an IP address must be assigned to the VM NIC - either the one explicitly specified by the user or allocated automatically by the IPAM service by not specifying the IP address. If false, then no IP assignment is required for this VM NIC.
OvaV2VmConfigNicNetworkInfoIpv4ConfigIpAddress, OvaV2VmConfigNicNetworkInfoIpv4ConfigIpAddressArgs
- Prefix
Length int - The prefix length of the IP address.
- Value string
- The IPv4 address of the host.
- Prefix
Length int - The prefix length of the IP address.
- Value string
- The IPv4 address of the host.
- prefix_
length number - The prefix length of the IP address.
- value string
- The IPv4 address of the host.
- prefix
Length Integer - The prefix length of the IP address.
- value String
- The IPv4 address of the host.
- prefix
Length number - The prefix length of the IP address.
- value string
- The IPv4 address of the host.
- prefix_
length int - The prefix length of the IP address.
- value str
- The IPv4 address of the host.
- prefix
Length Number - The prefix length of the IP address.
- value String
- The IPv4 address of the host.
OvaV2VmConfigNicNetworkInfoIpv4ConfigSecondaryIpAddressList, OvaV2VmConfigNicNetworkInfoIpv4ConfigSecondaryIpAddressListArgs
- Prefix
Length int - The prefix length of the IP address.
- Value string
- Prefix
Length int - The prefix length of the IP address.
- Value string
- prefix_
length number - The prefix length of the IP address.
- value string
- prefix
Length Integer - The prefix length of the IP address.
- value String
- prefix
Length number - The prefix length of the IP address.
- value string
- prefix_
length int - The prefix length of the IP address.
- value str
- prefix
Length Number - The prefix length of the IP address.
- value String
OvaV2VmConfigNicNetworkInfoIpv4Info, OvaV2VmConfigNicNetworkInfoIpv4InfoArgs
OvaV2VmConfigNicNetworkInfoIpv4InfoLearnedIpAddress, OvaV2VmConfigNicNetworkInfoIpv4InfoLearnedIpAddressArgs
- Value string
- Prefix
Length int - The prefix length of the IP address.
- Value string
- Prefix
Length int - The prefix length of the IP address.
- value string
- prefix_
length number - The prefix length of the IP address.
- value String
- prefix
Length Integer - The prefix length of the IP address.
- value string
- prefix
Length number - The prefix length of the IP address.
- value str
- prefix_
length int - The prefix length of the IP address.
- value String
- prefix
Length Number - The prefix length of the IP address.
OvaV2VmConfigNicNetworkInfoNetworkFunctionChain, OvaV2VmConfigNicNetworkInfoNetworkFunctionChainArgs
- Ext
Id string
- Ext
Id string
- ext_
id string
- ext
Id String
- ext
Id string
- ext_
id str
- ext
Id String
OvaV2VmConfigNicNetworkInfoSubnet, OvaV2VmConfigNicNetworkInfoSubnetArgs
- Ext
Id string
- Ext
Id string
- ext_
id string
- ext
Id String
- ext
Id string
- ext_
id str
- ext
Id String
OvaV2VmConfigNicNicBackingInfo, OvaV2VmConfigNicNicBackingInfoArgs
OvaV2VmConfigNicNicBackingInfoDpOffloadNic, OvaV2VmConfigNicNicBackingInfoDpOffloadNicArgs
- Dp
Offload PiersProfile Reference Karsenbarg. Nutanix. Inputs. Ova V2Vm Config Nic Nic Backing Info Dp Offload Nic Dp Offload Profile Reference - Host
Pcie PiersDevice Reference Karsenbarg. Nutanix. Inputs. Ova V2Vm Config Nic Nic Backing Info Dp Offload Nic Host Pcie Device Reference - Is
Connected bool - Mac
Address string - MAC address of the emulated NIC.
- dp_
offload_ objectprofile_ reference - host_
pcie_ objectdevice_ reference - is_
connected bool - mac_
address string - MAC address of the emulated NIC.
- dp
Offload Property MapProfile Reference - host
Pcie Property MapDevice Reference - is
Connected Boolean - mac
Address String - MAC address of the emulated NIC.
OvaV2VmConfigNicNicBackingInfoDpOffloadNicDpOffloadProfileReference, OvaV2VmConfigNicNicBackingInfoDpOffloadNicDpOffloadProfileReferenceArgs
- Ext
Id string
- Ext
Id string
- ext_
id string
- ext
Id String
- ext
Id string
- ext_
id str
- ext
Id String
OvaV2VmConfigNicNicBackingInfoDpOffloadNicHostPcieDeviceReference, OvaV2VmConfigNicNicBackingInfoDpOffloadNicHostPcieDeviceReferenceArgs
- Ext
Id string
- Ext
Id string
- ext_
id string
- ext
Id String
- ext
Id string
- ext_
id str
- ext
Id String
OvaV2VmConfigNicNicBackingInfoSriovNic, OvaV2VmConfigNicNicBackingInfoSriovNicArgs
- sriov_
profile_ objectreference - host_
pcie_ objectdevice_ reference - is_
connected bool - mac_
address string - MAC address of the emulated NIC.
- sriov
Profile OvaReference V2Vm Config Nic Nic Backing Info Sriov Nic Sriov Profile Reference - host
Pcie OvaDevice Reference V2Vm Config Nic Nic Backing Info Sriov Nic Host Pcie Device Reference - is
Connected Boolean - mac
Address String - MAC address of the emulated NIC.
- sriov
Profile OvaReference V2Vm Config Nic Nic Backing Info Sriov Nic Sriov Profile Reference - host
Pcie OvaDevice Reference V2Vm Config Nic Nic Backing Info Sriov Nic Host Pcie Device Reference - is
Connected boolean - mac
Address string - MAC address of the emulated NIC.
- sriov
Profile Property MapReference - host
Pcie Property MapDevice Reference - is
Connected Boolean - mac
Address String - MAC address of the emulated NIC.
OvaV2VmConfigNicNicBackingInfoSriovNicHostPcieDeviceReference, OvaV2VmConfigNicNicBackingInfoSriovNicHostPcieDeviceReferenceArgs
- Ext
Id string
- Ext
Id string
- ext_
id string
- ext
Id String
- ext
Id string
- ext_
id str
- ext
Id String
OvaV2VmConfigNicNicBackingInfoSriovNicSriovProfileReference, OvaV2VmConfigNicNicBackingInfoSriovNicSriovProfileReferenceArgs
- Ext
Id string
- Ext
Id string
- ext_
id string
- ext
Id String
- ext
Id string
- ext_
id str
- ext
Id String
OvaV2VmConfigNicNicBackingInfoVirtualEthernetNic, OvaV2VmConfigNicNicBackingInfoVirtualEthernetNicArgs
- Is
Connected bool - Mac
Address string - MAC address of the emulated NIC.
- Model string
- Options for the NIC emulation. Valid values "VIRTIO" , "E1000".
- Num
Queues int - The number of Tx/Rx queue pairs for this NIC. Default is 1.
- Is
Connected bool - Mac
Address string - MAC address of the emulated NIC.
- Model string
- Options for the NIC emulation. Valid values "VIRTIO" , "E1000".
- Num
Queues int - The number of Tx/Rx queue pairs for this NIC. Default is 1.
- is_
connected bool - mac_
address string - MAC address of the emulated NIC.
- model string
- Options for the NIC emulation. Valid values "VIRTIO" , "E1000".
- num_
queues number - The number of Tx/Rx queue pairs for this NIC. Default is 1.
- is
Connected Boolean - mac
Address String - MAC address of the emulated NIC.
- model String
- Options for the NIC emulation. Valid values "VIRTIO" , "E1000".
- num
Queues Integer - The number of Tx/Rx queue pairs for this NIC. Default is 1.
- is
Connected boolean - mac
Address string - MAC address of the emulated NIC.
- model string
- Options for the NIC emulation. Valid values "VIRTIO" , "E1000".
- num
Queues number - The number of Tx/Rx queue pairs for this NIC. Default is 1.
- is_
connected bool - mac_
address str - MAC address of the emulated NIC.
- model str
- Options for the NIC emulation. Valid values "VIRTIO" , "E1000".
- num_
queues int - The number of Tx/Rx queue pairs for this NIC. Default is 1.
- is
Connected Boolean - mac
Address String - MAC address of the emulated NIC.
- model String
- Options for the NIC emulation. Valid values "VIRTIO" , "E1000".
- num
Queues Number - The number of Tx/Rx queue pairs for this NIC. Default is 1.
OvaV2VmConfigNicNicNetworkInfo, OvaV2VmConfigNicNicNetworkInfoArgs
- Dp
Offload PiersNic Network Info Karsenbarg. Nutanix. Inputs. Ova V2Vm Config Nic Nic Network Info Dp Offload Nic Network Info - Sriov
Nic PiersNetwork Info Karsenbarg. Nutanix. Inputs. Ova V2Vm Config Nic Nic Network Info Sriov Nic Network Info - Virtual
Ethernet PiersNic Network Info Karsenbarg. Nutanix. Inputs. Ova V2Vm Config Nic Nic Network Info Virtual Ethernet Nic Network Info
OvaV2VmConfigNicNicNetworkInfoDpOffloadNicNetworkInfo, OvaV2VmConfigNicNicNetworkInfoDpOffloadNicNetworkInfoArgs
- Ipv4Configs
List<Piers
Karsenbarg. Nutanix. Inputs. Ova V2Vm Config Nic Nic Network Info Dp Offload Nic Network Info Ipv4Config> - The IP address configurations.
- Ipv4Infos
List<Piers
Karsenbarg. Nutanix. Inputs. Ova V2Vm Config Nic Nic Network Info Dp Offload Nic Network Info Ipv4Info> - Ipv6Infos
List<Piers
Karsenbarg. Nutanix. Inputs. Ova V2Vm Config Nic Nic Network Info Dp Offload Nic Network Info Ipv6Info> - Should
Allow boolUnknown Macs - Indicates whether an unknown unicast traffic is forwarded to this NIC or not. This is applicable only for the NICs on the overlay subnets.
- Subnets
List<Piers
Karsenbarg. Nutanix. Inputs. Ova V2Vm Config Nic Nic Network Info Dp Offload Nic Network Info Subnet> - Network identifier for this adapter. Only valid if nicType is NORMAL_NIC or DIRECT_NIC
subnet.ext_id: (Optional) The globally unique identifier of a subnet of type UUID.
- Trunked
Vlans List<int> - List of networks to trunk if VLAN mode is marked as TRUNKED. If empty and VLAN mode is set to TRUNKED, all the VLANs are trunked.
- Vlan
Mode string - all the virtual NICs are created in ACCESS mode, which permits only one VLAN per virtual network. TRUNKED mode allows multiple VLANs on a single VM NIC for network-aware user VMs.
- Ipv4Configs
[]Ova
V2Vm Config Nic Nic Network Info Dp Offload Nic Network Info Ipv4Config - The IP address configurations.
- Ipv4Infos
[]Ova
V2Vm Config Nic Nic Network Info Dp Offload Nic Network Info Ipv4Info - Ipv6Infos
[]Ova
V2Vm Config Nic Nic Network Info Dp Offload Nic Network Info Ipv6Info - Should
Allow boolUnknown Macs - Indicates whether an unknown unicast traffic is forwarded to this NIC or not. This is applicable only for the NICs on the overlay subnets.
- Subnets
[]Ova
V2Vm Config Nic Nic Network Info Dp Offload Nic Network Info Subnet - Network identifier for this adapter. Only valid if nicType is NORMAL_NIC or DIRECT_NIC
subnet.ext_id: (Optional) The globally unique identifier of a subnet of type UUID.
- Trunked
Vlans []int - List of networks to trunk if VLAN mode is marked as TRUNKED. If empty and VLAN mode is set to TRUNKED, all the VLANs are trunked.
- Vlan
Mode string - all the virtual NICs are created in ACCESS mode, which permits only one VLAN per virtual network. TRUNKED mode allows multiple VLANs on a single VM NIC for network-aware user VMs.
- ipv4_
configs list(object) - The IP address configurations.
- ipv4_
infos list(object) - ipv6_
infos list(object) - should_
allow_ boolunknown_ macs - Indicates whether an unknown unicast traffic is forwarded to this NIC or not. This is applicable only for the NICs on the overlay subnets.
- subnets list(object)
- Network identifier for this adapter. Only valid if nicType is NORMAL_NIC or DIRECT_NIC
subnet.ext_id: (Optional) The globally unique identifier of a subnet of type UUID.
- trunked_
vlans list(number) - List of networks to trunk if VLAN mode is marked as TRUNKED. If empty and VLAN mode is set to TRUNKED, all the VLANs are trunked.
- vlan_
mode string - all the virtual NICs are created in ACCESS mode, which permits only one VLAN per virtual network. TRUNKED mode allows multiple VLANs on a single VM NIC for network-aware user VMs.
- ipv4Configs
List<Ova
V2Vm Config Nic Nic Network Info Dp Offload Nic Network Info Ipv4Config> - The IP address configurations.
- ipv4Infos
List<Ova
V2Vm Config Nic Nic Network Info Dp Offload Nic Network Info Ipv4Info> - ipv6Infos
List<Ova
V2Vm Config Nic Nic Network Info Dp Offload Nic Network Info Ipv6Info> - should
Allow BooleanUnknown Macs - Indicates whether an unknown unicast traffic is forwarded to this NIC or not. This is applicable only for the NICs on the overlay subnets.
- subnets
List<Ova
V2Vm Config Nic Nic Network Info Dp Offload Nic Network Info Subnet> - Network identifier for this adapter. Only valid if nicType is NORMAL_NIC or DIRECT_NIC
subnet.ext_id: (Optional) The globally unique identifier of a subnet of type UUID.
- trunked
Vlans List<Integer> - List of networks to trunk if VLAN mode is marked as TRUNKED. If empty and VLAN mode is set to TRUNKED, all the VLANs are trunked.
- vlan
Mode String - all the virtual NICs are created in ACCESS mode, which permits only one VLAN per virtual network. TRUNKED mode allows multiple VLANs on a single VM NIC for network-aware user VMs.
- ipv4Configs
Ova
V2Vm Config Nic Nic Network Info Dp Offload Nic Network Info Ipv4Config[] - The IP address configurations.
- ipv4Infos
Ova
V2Vm Config Nic Nic Network Info Dp Offload Nic Network Info Ipv4Info[] - ipv6Infos
Ova
V2Vm Config Nic Nic Network Info Dp Offload Nic Network Info Ipv6Info[] - should
Allow booleanUnknown Macs - Indicates whether an unknown unicast traffic is forwarded to this NIC or not. This is applicable only for the NICs on the overlay subnets.
- subnets
Ova
V2Vm Config Nic Nic Network Info Dp Offload Nic Network Info Subnet[] - Network identifier for this adapter. Only valid if nicType is NORMAL_NIC or DIRECT_NIC
subnet.ext_id: (Optional) The globally unique identifier of a subnet of type UUID.
- trunked
Vlans number[] - List of networks to trunk if VLAN mode is marked as TRUNKED. If empty and VLAN mode is set to TRUNKED, all the VLANs are trunked.
- vlan
Mode string - all the virtual NICs are created in ACCESS mode, which permits only one VLAN per virtual network. TRUNKED mode allows multiple VLANs on a single VM NIC for network-aware user VMs.
- ipv4_
configs Sequence[OvaV2Vm Config Nic Nic Network Info Dp Offload Nic Network Info Ipv4Config] - The IP address configurations.
- ipv4_
infos Sequence[OvaV2Vm Config Nic Nic Network Info Dp Offload Nic Network Info Ipv4Info] - ipv6_
infos Sequence[OvaV2Vm Config Nic Nic Network Info Dp Offload Nic Network Info Ipv6Info] - should_
allow_ boolunknown_ macs - Indicates whether an unknown unicast traffic is forwarded to this NIC or not. This is applicable only for the NICs on the overlay subnets.
- subnets
Sequence[Ova
V2Vm Config Nic Nic Network Info Dp Offload Nic Network Info Subnet] - Network identifier for this adapter. Only valid if nicType is NORMAL_NIC or DIRECT_NIC
subnet.ext_id: (Optional) The globally unique identifier of a subnet of type UUID.
- trunked_
vlans Sequence[int] - List of networks to trunk if VLAN mode is marked as TRUNKED. If empty and VLAN mode is set to TRUNKED, all the VLANs are trunked.
- vlan_
mode str - all the virtual NICs are created in ACCESS mode, which permits only one VLAN per virtual network. TRUNKED mode allows multiple VLANs on a single VM NIC for network-aware user VMs.
- ipv4Configs List<Property Map>
- The IP address configurations.
- ipv4Infos List<Property Map>
- ipv6Infos List<Property Map>
- should
Allow BooleanUnknown Macs - Indicates whether an unknown unicast traffic is forwarded to this NIC or not. This is applicable only for the NICs on the overlay subnets.
- subnets List<Property Map>
- Network identifier for this adapter. Only valid if nicType is NORMAL_NIC or DIRECT_NIC
subnet.ext_id: (Optional) The globally unique identifier of a subnet of type UUID.
- trunked
Vlans List<Number> - List of networks to trunk if VLAN mode is marked as TRUNKED. If empty and VLAN mode is set to TRUNKED, all the VLANs are trunked.
- vlan
Mode String - all the virtual NICs are created in ACCESS mode, which permits only one VLAN per virtual network. TRUNKED mode allows multiple VLANs on a single VM NIC for network-aware user VMs.
OvaV2VmConfigNicNicNetworkInfoDpOffloadNicNetworkInfoIpv4Config, OvaV2VmConfigNicNicNetworkInfoDpOffloadNicNetworkInfoIpv4ConfigArgs
- Ip
Addresses List<PiersKarsenbarg. Nutanix. Inputs. Ova V2Vm Config Nic Nic Network Info Dp Offload Nic Network Info Ipv4Config Ip Address> - The IP address of the NIC.
- Secondary
Ip List<PiersAddress Lists Karsenbarg. Nutanix. Inputs. Ova V2Vm Config Nic Nic Network Info Dp Offload Nic Network Info Ipv4Config Secondary Ip Address List> - Secondary IP addresses for the NIC.
- Should
Assign boolIp - If set to true (default value), an IP address must be assigned to the VM NIC - either the one explicitly specified by the user or allocated automatically by the IPAM service by not specifying the IP address. If false, then no IP assignment is required for this VM NIC.
- Ip
Addresses []OvaV2Vm Config Nic Nic Network Info Dp Offload Nic Network Info Ipv4Config Ip Address - The IP address of the NIC.
- Secondary
Ip []OvaAddress Lists V2Vm Config Nic Nic Network Info Dp Offload Nic Network Info Ipv4Config Secondary Ip Address List - Secondary IP addresses for the NIC.
- Should
Assign boolIp - If set to true (default value), an IP address must be assigned to the VM NIC - either the one explicitly specified by the user or allocated automatically by the IPAM service by not specifying the IP address. If false, then no IP assignment is required for this VM NIC.
- ip_
addresses list(object) - The IP address of the NIC.
- secondary_
ip_ list(object)address_ lists - Secondary IP addresses for the NIC.
- should_
assign_ boolip - If set to true (default value), an IP address must be assigned to the VM NIC - either the one explicitly specified by the user or allocated automatically by the IPAM service by not specifying the IP address. If false, then no IP assignment is required for this VM NIC.
- ip
Addresses List<OvaV2Vm Config Nic Nic Network Info Dp Offload Nic Network Info Ipv4Config Ip Address> - The IP address of the NIC.
- secondary
Ip List<OvaAddress Lists V2Vm Config Nic Nic Network Info Dp Offload Nic Network Info Ipv4Config Secondary Ip Address List> - Secondary IP addresses for the NIC.
- should
Assign BooleanIp - If set to true (default value), an IP address must be assigned to the VM NIC - either the one explicitly specified by the user or allocated automatically by the IPAM service by not specifying the IP address. If false, then no IP assignment is required for this VM NIC.
- ip
Addresses OvaV2Vm Config Nic Nic Network Info Dp Offload Nic Network Info Ipv4Config Ip Address[] - The IP address of the NIC.
- secondary
Ip OvaAddress Lists V2Vm Config Nic Nic Network Info Dp Offload Nic Network Info Ipv4Config Secondary Ip Address List[] - Secondary IP addresses for the NIC.
- should
Assign booleanIp - If set to true (default value), an IP address must be assigned to the VM NIC - either the one explicitly specified by the user or allocated automatically by the IPAM service by not specifying the IP address. If false, then no IP assignment is required for this VM NIC.
- ip_
addresses Sequence[OvaV2Vm Config Nic Nic Network Info Dp Offload Nic Network Info Ipv4Config Ip Address] - The IP address of the NIC.
- secondary_
ip_ Sequence[Ovaaddress_ lists V2Vm Config Nic Nic Network Info Dp Offload Nic Network Info Ipv4Config Secondary Ip Address List] - Secondary IP addresses for the NIC.
- should_
assign_ boolip - If set to true (default value), an IP address must be assigned to the VM NIC - either the one explicitly specified by the user or allocated automatically by the IPAM service by not specifying the IP address. If false, then no IP assignment is required for this VM NIC.
- ip
Addresses List<Property Map> - The IP address of the NIC.
- secondary
Ip List<Property Map>Address Lists - Secondary IP addresses for the NIC.
- should
Assign BooleanIp - If set to true (default value), an IP address must be assigned to the VM NIC - either the one explicitly specified by the user or allocated automatically by the IPAM service by not specifying the IP address. If false, then no IP assignment is required for this VM NIC.
OvaV2VmConfigNicNicNetworkInfoDpOffloadNicNetworkInfoIpv4ConfigIpAddress, OvaV2VmConfigNicNicNetworkInfoDpOffloadNicNetworkInfoIpv4ConfigIpAddressArgs
- Prefix
Length int - The prefix length of the IP address.
- Value string
- The IPv4 address of the host.
- Prefix
Length int - The prefix length of the IP address.
- Value string
- The IPv4 address of the host.
- prefix_
length number - The prefix length of the IP address.
- value string
- The IPv4 address of the host.
- prefix
Length Integer - The prefix length of the IP address.
- value String
- The IPv4 address of the host.
- prefix
Length number - The prefix length of the IP address.
- value string
- The IPv4 address of the host.
- prefix_
length int - The prefix length of the IP address.
- value str
- The IPv4 address of the host.
- prefix
Length Number - The prefix length of the IP address.
- value String
- The IPv4 address of the host.
OvaV2VmConfigNicNicNetworkInfoDpOffloadNicNetworkInfoIpv4ConfigSecondaryIpAddressList, OvaV2VmConfigNicNicNetworkInfoDpOffloadNicNetworkInfoIpv4ConfigSecondaryIpAddressListArgs
- Prefix
Length int - The prefix length of the IP address.
- Value string
- Prefix
Length int - The prefix length of the IP address.
- Value string
- prefix_
length number - The prefix length of the IP address.
- value string
- prefix
Length Integer - The prefix length of the IP address.
- value String
- prefix
Length number - The prefix length of the IP address.
- value string
- prefix_
length int - The prefix length of the IP address.
- value str
- prefix
Length Number - The prefix length of the IP address.
- value String
OvaV2VmConfigNicNicNetworkInfoDpOffloadNicNetworkInfoIpv4Info, OvaV2VmConfigNicNicNetworkInfoDpOffloadNicNetworkInfoIpv4InfoArgs
OvaV2VmConfigNicNicNetworkInfoDpOffloadNicNetworkInfoIpv4InfoLearnedIpAddress, OvaV2VmConfigNicNicNetworkInfoDpOffloadNicNetworkInfoIpv4InfoLearnedIpAddressArgs
- Value string
- Prefix
Length int - The prefix length of the IP address.
- Value string
- Prefix
Length int - The prefix length of the IP address.
- value string
- prefix_
length number - The prefix length of the IP address.
- value String
- prefix
Length Integer - The prefix length of the IP address.
- value string
- prefix
Length number - The prefix length of the IP address.
- value str
- prefix_
length int - The prefix length of the IP address.
- value String
- prefix
Length Number - The prefix length of the IP address.
OvaV2VmConfigNicNicNetworkInfoDpOffloadNicNetworkInfoIpv6Info, OvaV2VmConfigNicNicNetworkInfoDpOffloadNicNetworkInfoIpv6InfoArgs
OvaV2VmConfigNicNicNetworkInfoDpOffloadNicNetworkInfoIpv6InfoLearnedIpv6Address, OvaV2VmConfigNicNicNetworkInfoDpOffloadNicNetworkInfoIpv6InfoLearnedIpv6AddressArgs
- Value string
- Prefix
Length int - The prefix length of the IP address.
- Value string
- Prefix
Length int - The prefix length of the IP address.
- value string
- prefix_
length number - The prefix length of the IP address.
- value String
- prefix
Length Integer - The prefix length of the IP address.
- value string
- prefix
Length number - The prefix length of the IP address.
- value str
- prefix_
length int - The prefix length of the IP address.
- value String
- prefix
Length Number - The prefix length of the IP address.
OvaV2VmConfigNicNicNetworkInfoDpOffloadNicNetworkInfoSubnet, OvaV2VmConfigNicNicNetworkInfoDpOffloadNicNetworkInfoSubnetArgs
- Ext
Id string
- Ext
Id string
- ext_
id string
- ext
Id String
- ext
Id string
- ext_
id str
- ext
Id String
OvaV2VmConfigNicNicNetworkInfoSriovNicNetworkInfo, OvaV2VmConfigNicNicNetworkInfoSriovNicNetworkInfoArgs
- Vlan
Id int
- Vlan
Id int
- vlan_
id number
- vlan
Id Integer
- vlan
Id number
- vlan_
id int
- vlan
Id Number
OvaV2VmConfigNicNicNetworkInfoVirtualEthernetNicNetworkInfo, OvaV2VmConfigNicNicNetworkInfoVirtualEthernetNicNetworkInfoArgs
- Ipv4Configs
List<Piers
Karsenbarg. Nutanix. Inputs. Ova V2Vm Config Nic Nic Network Info Virtual Ethernet Nic Network Info Ipv4Config> - The IP address configurations.
- Ipv4Infos
List<Piers
Karsenbarg. Nutanix. Inputs. Ova V2Vm Config Nic Nic Network Info Virtual Ethernet Nic Network Info Ipv4Info> - Ipv6Infos
List<Piers
Karsenbarg. Nutanix. Inputs. Ova V2Vm Config Nic Nic Network Info Virtual Ethernet Nic Network Info Ipv6Info> - Network
Function List<PiersChains Karsenbarg. Nutanix. Inputs. Ova V2Vm Config Nic Nic Network Info Virtual Ethernet Nic Network Info Network Function Chain> - The network function chain associates with the NIC. Only valid if nicType is NORMAL_NIC.
- Network
Function stringNic Type - The type of this Network function NIC. Defaults to INGRESS.
- Nic
Type string - NIC type. Valid values "SPAN_DESTINATION_NIC", "NORMAL_NIC", "DIRECT_NIC", "NETWORK_FUNCTION_NIC" .
- Should
Allow boolUnknown Macs - Indicates whether an unknown unicast traffic is forwarded to this NIC or not. This is applicable only for the NICs on the overlay subnets.
- Subnets
List<Piers
Karsenbarg. Nutanix. Inputs. Ova V2Vm Config Nic Nic Network Info Virtual Ethernet Nic Network Info Subnet> - Network identifier for this adapter. Only valid if nicType is NORMAL_NIC or DIRECT_NIC
subnet.ext_id: (Optional) The globally unique identifier of a subnet of type UUID.
- Trunked
Vlans List<int> - List of networks to trunk if VLAN mode is marked as TRUNKED. If empty and VLAN mode is set to TRUNKED, all the VLANs are trunked.
- Vlan
Mode string - all the virtual NICs are created in ACCESS mode, which permits only one VLAN per virtual network. TRUNKED mode allows multiple VLANs on a single VM NIC for network-aware user VMs.
- Ipv4Configs
[]Ova
V2Vm Config Nic Nic Network Info Virtual Ethernet Nic Network Info Ipv4Config - The IP address configurations.
- Ipv4Infos
[]Ova
V2Vm Config Nic Nic Network Info Virtual Ethernet Nic Network Info Ipv4Info - Ipv6Infos
[]Ova
V2Vm Config Nic Nic Network Info Virtual Ethernet Nic Network Info Ipv6Info - Network
Function []OvaChains V2Vm Config Nic Nic Network Info Virtual Ethernet Nic Network Info Network Function Chain - The network function chain associates with the NIC. Only valid if nicType is NORMAL_NIC.
- Network
Function stringNic Type - The type of this Network function NIC. Defaults to INGRESS.
- Nic
Type string - NIC type. Valid values "SPAN_DESTINATION_NIC", "NORMAL_NIC", "DIRECT_NIC", "NETWORK_FUNCTION_NIC" .
- Should
Allow boolUnknown Macs - Indicates whether an unknown unicast traffic is forwarded to this NIC or not. This is applicable only for the NICs on the overlay subnets.
- Subnets
[]Ova
V2Vm Config Nic Nic Network Info Virtual Ethernet Nic Network Info Subnet - Network identifier for this adapter. Only valid if nicType is NORMAL_NIC or DIRECT_NIC
subnet.ext_id: (Optional) The globally unique identifier of a subnet of type UUID.
- Trunked
Vlans []int - List of networks to trunk if VLAN mode is marked as TRUNKED. If empty and VLAN mode is set to TRUNKED, all the VLANs are trunked.
- Vlan
Mode string - all the virtual NICs are created in ACCESS mode, which permits only one VLAN per virtual network. TRUNKED mode allows multiple VLANs on a single VM NIC for network-aware user VMs.
- ipv4_
configs list(object) - The IP address configurations.
- ipv4_
infos list(object) - ipv6_
infos list(object) - network_
function_ list(object)chains - The network function chain associates with the NIC. Only valid if nicType is NORMAL_NIC.
- network_
function_ stringnic_ type - The type of this Network function NIC. Defaults to INGRESS.
- nic_
type string - NIC type. Valid values "SPAN_DESTINATION_NIC", "NORMAL_NIC", "DIRECT_NIC", "NETWORK_FUNCTION_NIC" .
- should_
allow_ boolunknown_ macs - Indicates whether an unknown unicast traffic is forwarded to this NIC or not. This is applicable only for the NICs on the overlay subnets.
- subnets list(object)
- Network identifier for this adapter. Only valid if nicType is NORMAL_NIC or DIRECT_NIC
subnet.ext_id: (Optional) The globally unique identifier of a subnet of type UUID.
- trunked_
vlans list(number) - List of networks to trunk if VLAN mode is marked as TRUNKED. If empty and VLAN mode is set to TRUNKED, all the VLANs are trunked.
- vlan_
mode string - all the virtual NICs are created in ACCESS mode, which permits only one VLAN per virtual network. TRUNKED mode allows multiple VLANs on a single VM NIC for network-aware user VMs.
- ipv4Configs
List<Ova
V2Vm Config Nic Nic Network Info Virtual Ethernet Nic Network Info Ipv4Config> - The IP address configurations.
- ipv4Infos
List<Ova
V2Vm Config Nic Nic Network Info Virtual Ethernet Nic Network Info Ipv4Info> - ipv6Infos
List<Ova
V2Vm Config Nic Nic Network Info Virtual Ethernet Nic Network Info Ipv6Info> - network
Function List<OvaChains V2Vm Config Nic Nic Network Info Virtual Ethernet Nic Network Info Network Function Chain> - The network function chain associates with the NIC. Only valid if nicType is NORMAL_NIC.
- network
Function StringNic Type - The type of this Network function NIC. Defaults to INGRESS.
- nic
Type String - NIC type. Valid values "SPAN_DESTINATION_NIC", "NORMAL_NIC", "DIRECT_NIC", "NETWORK_FUNCTION_NIC" .
- should
Allow BooleanUnknown Macs - Indicates whether an unknown unicast traffic is forwarded to this NIC or not. This is applicable only for the NICs on the overlay subnets.
- subnets
List<Ova
V2Vm Config Nic Nic Network Info Virtual Ethernet Nic Network Info Subnet> - Network identifier for this adapter. Only valid if nicType is NORMAL_NIC or DIRECT_NIC
subnet.ext_id: (Optional) The globally unique identifier of a subnet of type UUID.
- trunked
Vlans List<Integer> - List of networks to trunk if VLAN mode is marked as TRUNKED. If empty and VLAN mode is set to TRUNKED, all the VLANs are trunked.
- vlan
Mode String - all the virtual NICs are created in ACCESS mode, which permits only one VLAN per virtual network. TRUNKED mode allows multiple VLANs on a single VM NIC for network-aware user VMs.
- ipv4Configs
Ova
V2Vm Config Nic Nic Network Info Virtual Ethernet Nic Network Info Ipv4Config[] - The IP address configurations.
- ipv4Infos
Ova
V2Vm Config Nic Nic Network Info Virtual Ethernet Nic Network Info Ipv4Info[] - ipv6Infos
Ova
V2Vm Config Nic Nic Network Info Virtual Ethernet Nic Network Info Ipv6Info[] - network
Function OvaChains V2Vm Config Nic Nic Network Info Virtual Ethernet Nic Network Info Network Function Chain[] - The network function chain associates with the NIC. Only valid if nicType is NORMAL_NIC.
- network
Function stringNic Type - The type of this Network function NIC. Defaults to INGRESS.
- nic
Type string - NIC type. Valid values "SPAN_DESTINATION_NIC", "NORMAL_NIC", "DIRECT_NIC", "NETWORK_FUNCTION_NIC" .
- should
Allow booleanUnknown Macs - Indicates whether an unknown unicast traffic is forwarded to this NIC or not. This is applicable only for the NICs on the overlay subnets.
- subnets
Ova
V2Vm Config Nic Nic Network Info Virtual Ethernet Nic Network Info Subnet[] - Network identifier for this adapter. Only valid if nicType is NORMAL_NIC or DIRECT_NIC
subnet.ext_id: (Optional) The globally unique identifier of a subnet of type UUID.
- trunked
Vlans number[] - List of networks to trunk if VLAN mode is marked as TRUNKED. If empty and VLAN mode is set to TRUNKED, all the VLANs are trunked.
- vlan
Mode string - all the virtual NICs are created in ACCESS mode, which permits only one VLAN per virtual network. TRUNKED mode allows multiple VLANs on a single VM NIC for network-aware user VMs.
- ipv4_
configs Sequence[OvaV2Vm Config Nic Nic Network Info Virtual Ethernet Nic Network Info Ipv4Config] - The IP address configurations.
- ipv4_
infos Sequence[OvaV2Vm Config Nic Nic Network Info Virtual Ethernet Nic Network Info Ipv4Info] - ipv6_
infos Sequence[OvaV2Vm Config Nic Nic Network Info Virtual Ethernet Nic Network Info Ipv6Info] - network_
function_ Sequence[Ovachains V2Vm Config Nic Nic Network Info Virtual Ethernet Nic Network Info Network Function Chain] - The network function chain associates with the NIC. Only valid if nicType is NORMAL_NIC.
- network_
function_ strnic_ type - The type of this Network function NIC. Defaults to INGRESS.
- nic_
type str - NIC type. Valid values "SPAN_DESTINATION_NIC", "NORMAL_NIC", "DIRECT_NIC", "NETWORK_FUNCTION_NIC" .
- should_
allow_ boolunknown_ macs - Indicates whether an unknown unicast traffic is forwarded to this NIC or not. This is applicable only for the NICs on the overlay subnets.
- subnets
Sequence[Ova
V2Vm Config Nic Nic Network Info Virtual Ethernet Nic Network Info Subnet] - Network identifier for this adapter. Only valid if nicType is NORMAL_NIC or DIRECT_NIC
subnet.ext_id: (Optional) The globally unique identifier of a subnet of type UUID.
- trunked_
vlans Sequence[int] - List of networks to trunk if VLAN mode is marked as TRUNKED. If empty and VLAN mode is set to TRUNKED, all the VLANs are trunked.
- vlan_
mode str - all the virtual NICs are created in ACCESS mode, which permits only one VLAN per virtual network. TRUNKED mode allows multiple VLANs on a single VM NIC for network-aware user VMs.
- ipv4Configs List<Property Map>
- The IP address configurations.
- ipv4Infos List<Property Map>
- ipv6Infos List<Property Map>
- network
Function List<Property Map>Chains - The network function chain associates with the NIC. Only valid if nicType is NORMAL_NIC.
- network
Function StringNic Type - The type of this Network function NIC. Defaults to INGRESS.
- nic
Type String - NIC type. Valid values "SPAN_DESTINATION_NIC", "NORMAL_NIC", "DIRECT_NIC", "NETWORK_FUNCTION_NIC" .
- should
Allow BooleanUnknown Macs - Indicates whether an unknown unicast traffic is forwarded to this NIC or not. This is applicable only for the NICs on the overlay subnets.
- subnets List<Property Map>
- Network identifier for this adapter. Only valid if nicType is NORMAL_NIC or DIRECT_NIC
subnet.ext_id: (Optional) The globally unique identifier of a subnet of type UUID.
- trunked
Vlans List<Number> - List of networks to trunk if VLAN mode is marked as TRUNKED. If empty and VLAN mode is set to TRUNKED, all the VLANs are trunked.
- vlan
Mode String - all the virtual NICs are created in ACCESS mode, which permits only one VLAN per virtual network. TRUNKED mode allows multiple VLANs on a single VM NIC for network-aware user VMs.
OvaV2VmConfigNicNicNetworkInfoVirtualEthernetNicNetworkInfoIpv4Config, OvaV2VmConfigNicNicNetworkInfoVirtualEthernetNicNetworkInfoIpv4ConfigArgs
- Ip
Addresses List<PiersKarsenbarg. Nutanix. Inputs. Ova V2Vm Config Nic Nic Network Info Virtual Ethernet Nic Network Info Ipv4Config Ip Address> - The IP address of the NIC.
- Secondary
Ip List<PiersAddress Lists Karsenbarg. Nutanix. Inputs. Ova V2Vm Config Nic Nic Network Info Virtual Ethernet Nic Network Info Ipv4Config Secondary Ip Address List> - Secondary IP addresses for the NIC.
- Should
Assign boolIp - If set to true (default value), an IP address must be assigned to the VM NIC - either the one explicitly specified by the user or allocated automatically by the IPAM service by not specifying the IP address. If false, then no IP assignment is required for this VM NIC.
- Ip
Addresses []OvaV2Vm Config Nic Nic Network Info Virtual Ethernet Nic Network Info Ipv4Config Ip Address - The IP address of the NIC.
- Secondary
Ip []OvaAddress Lists V2Vm Config Nic Nic Network Info Virtual Ethernet Nic Network Info Ipv4Config Secondary Ip Address List - Secondary IP addresses for the NIC.
- Should
Assign boolIp - If set to true (default value), an IP address must be assigned to the VM NIC - either the one explicitly specified by the user or allocated automatically by the IPAM service by not specifying the IP address. If false, then no IP assignment is required for this VM NIC.
- ip_
addresses list(object) - The IP address of the NIC.
- secondary_
ip_ list(object)address_ lists - Secondary IP addresses for the NIC.
- should_
assign_ boolip - If set to true (default value), an IP address must be assigned to the VM NIC - either the one explicitly specified by the user or allocated automatically by the IPAM service by not specifying the IP address. If false, then no IP assignment is required for this VM NIC.
- ip
Addresses List<OvaV2Vm Config Nic Nic Network Info Virtual Ethernet Nic Network Info Ipv4Config Ip Address> - The IP address of the NIC.
- secondary
Ip List<OvaAddress Lists V2Vm Config Nic Nic Network Info Virtual Ethernet Nic Network Info Ipv4Config Secondary Ip Address List> - Secondary IP addresses for the NIC.
- should
Assign BooleanIp - If set to true (default value), an IP address must be assigned to the VM NIC - either the one explicitly specified by the user or allocated automatically by the IPAM service by not specifying the IP address. If false, then no IP assignment is required for this VM NIC.
- ip
Addresses OvaV2Vm Config Nic Nic Network Info Virtual Ethernet Nic Network Info Ipv4Config Ip Address[] - The IP address of the NIC.
- secondary
Ip OvaAddress Lists V2Vm Config Nic Nic Network Info Virtual Ethernet Nic Network Info Ipv4Config Secondary Ip Address List[] - Secondary IP addresses for the NIC.
- should
Assign booleanIp - If set to true (default value), an IP address must be assigned to the VM NIC - either the one explicitly specified by the user or allocated automatically by the IPAM service by not specifying the IP address. If false, then no IP assignment is required for this VM NIC.
- ip_
addresses Sequence[OvaV2Vm Config Nic Nic Network Info Virtual Ethernet Nic Network Info Ipv4Config Ip Address] - The IP address of the NIC.
- secondary_
ip_ Sequence[Ovaaddress_ lists V2Vm Config Nic Nic Network Info Virtual Ethernet Nic Network Info Ipv4Config Secondary Ip Address List] - Secondary IP addresses for the NIC.
- should_
assign_ boolip - If set to true (default value), an IP address must be assigned to the VM NIC - either the one explicitly specified by the user or allocated automatically by the IPAM service by not specifying the IP address. If false, then no IP assignment is required for this VM NIC.
- ip
Addresses List<Property Map> - The IP address of the NIC.
- secondary
Ip List<Property Map>Address Lists - Secondary IP addresses for the NIC.
- should
Assign BooleanIp - If set to true (default value), an IP address must be assigned to the VM NIC - either the one explicitly specified by the user or allocated automatically by the IPAM service by not specifying the IP address. If false, then no IP assignment is required for this VM NIC.
OvaV2VmConfigNicNicNetworkInfoVirtualEthernetNicNetworkInfoIpv4ConfigIpAddress, OvaV2VmConfigNicNicNetworkInfoVirtualEthernetNicNetworkInfoIpv4ConfigIpAddressArgs
- Prefix
Length int - The prefix length of the IP address.
- Value string
- The IPv4 address of the host.
- Prefix
Length int - The prefix length of the IP address.
- Value string
- The IPv4 address of the host.
- prefix_
length number - The prefix length of the IP address.
- value string
- The IPv4 address of the host.
- prefix
Length Integer - The prefix length of the IP address.
- value String
- The IPv4 address of the host.
- prefix
Length number - The prefix length of the IP address.
- value string
- The IPv4 address of the host.
- prefix_
length int - The prefix length of the IP address.
- value str
- The IPv4 address of the host.
- prefix
Length Number - The prefix length of the IP address.
- value String
- The IPv4 address of the host.
OvaV2VmConfigNicNicNetworkInfoVirtualEthernetNicNetworkInfoIpv4ConfigSecondaryIpAddressList, OvaV2VmConfigNicNicNetworkInfoVirtualEthernetNicNetworkInfoIpv4ConfigSecondaryIpAddressListArgs
- Prefix
Length int - The prefix length of the IP address.
- Value string
- Prefix
Length int - The prefix length of the IP address.
- Value string
- prefix_
length number - The prefix length of the IP address.
- value string
- prefix
Length Integer - The prefix length of the IP address.
- value String
- prefix
Length number - The prefix length of the IP address.
- value string
- prefix_
length int - The prefix length of the IP address.
- value str
- prefix
Length Number - The prefix length of the IP address.
- value String
OvaV2VmConfigNicNicNetworkInfoVirtualEthernetNicNetworkInfoIpv4Info, OvaV2VmConfigNicNicNetworkInfoVirtualEthernetNicNetworkInfoIpv4InfoArgs
OvaV2VmConfigNicNicNetworkInfoVirtualEthernetNicNetworkInfoIpv4InfoLearnedIpAddress, OvaV2VmConfigNicNicNetworkInfoVirtualEthernetNicNetworkInfoIpv4InfoLearnedIpAddressArgs
- Value string
- Prefix
Length int - The prefix length of the IP address.
- Value string
- Prefix
Length int - The prefix length of the IP address.
- value string
- prefix_
length number - The prefix length of the IP address.
- value String
- prefix
Length Integer - The prefix length of the IP address.
- value string
- prefix
Length number - The prefix length of the IP address.
- value str
- prefix_
length int - The prefix length of the IP address.
- value String
- prefix
Length Number - The prefix length of the IP address.
OvaV2VmConfigNicNicNetworkInfoVirtualEthernetNicNetworkInfoIpv6Info, OvaV2VmConfigNicNicNetworkInfoVirtualEthernetNicNetworkInfoIpv6InfoArgs
OvaV2VmConfigNicNicNetworkInfoVirtualEthernetNicNetworkInfoIpv6InfoLearnedIpv6Address, OvaV2VmConfigNicNicNetworkInfoVirtualEthernetNicNetworkInfoIpv6InfoLearnedIpv6AddressArgs
- Value string
- Prefix
Length int - The prefix length of the IP address.
- Value string
- Prefix
Length int - The prefix length of the IP address.
- value string
- prefix_
length number - The prefix length of the IP address.
- value String
- prefix
Length Integer - The prefix length of the IP address.
- value string
- prefix
Length number - The prefix length of the IP address.
- value str
- prefix_
length int - The prefix length of the IP address.
- value String
- prefix
Length Number - The prefix length of the IP address.
OvaV2VmConfigNicNicNetworkInfoVirtualEthernetNicNetworkInfoNetworkFunctionChain, OvaV2VmConfigNicNicNetworkInfoVirtualEthernetNicNetworkInfoNetworkFunctionChainArgs
- Ext
Id string
- Ext
Id string
- ext_
id string
- ext
Id String
- ext
Id string
- ext_
id str
- ext
Id String
OvaV2VmConfigNicNicNetworkInfoVirtualEthernetNicNetworkInfoSubnet, OvaV2VmConfigNicNicNetworkInfoVirtualEthernetNicNetworkInfoSubnetArgs
- Ext
Id string
- Ext
Id string
- ext_
id string
- ext
Id String
- ext
Id string
- ext_
id str
- ext
Id String
OvaV2VmConfigOwnershipInfo, OvaV2VmConfigOwnershipInfoArgs
- Owners
List<Piers
Karsenbarg. Nutanix. Inputs. Ova V2Vm Config Ownership Info Owner> - Reference to the owner.
owner.ext_id: -(Optional) A globally unique identifier of a VM owner type UUID.
- Owners
[]Ova
V2Vm Config Ownership Info Owner - Reference to the owner.
owner.ext_id: -(Optional) A globally unique identifier of a VM owner type UUID.
- owners list(object)
- Reference to the owner.
owner.ext_id: -(Optional) A globally unique identifier of a VM owner type UUID.
- owners
List<Ova
V2Vm Config Ownership Info Owner> - Reference to the owner.
owner.ext_id: -(Optional) A globally unique identifier of a VM owner type UUID.
- owners
Ova
V2Vm Config Ownership Info Owner[] - Reference to the owner.
owner.ext_id: -(Optional) A globally unique identifier of a VM owner type UUID.
- owners
Sequence[Ova
V2Vm Config Ownership Info Owner] - Reference to the owner.
owner.ext_id: -(Optional) A globally unique identifier of a VM owner type UUID.
- owners List<Property Map>
- Reference to the owner.
owner.ext_id: -(Optional) A globally unique identifier of a VM owner type UUID.
OvaV2VmConfigOwnershipInfoOwner, OvaV2VmConfigOwnershipInfoOwnerArgs
- Ext
Id string
- Ext
Id string
- ext_
id string
- ext
Id String
- ext
Id string
- ext_
id str
- ext
Id String
OvaV2VmConfigProject, OvaV2VmConfigProjectArgs
- Ext
Id string
- Ext
Id string
- ext_
id string
- ext
Id String
- ext
Id string
- ext_
id str
- ext
Id String
OvaV2VmConfigProtectionPolicyState, OvaV2VmConfigProtectionPolicyStateArgs
- Policies
List<Piers
Karsenbarg. Nutanix. Inputs. Ova V2Vm Config Protection Policy State Policy> - Reference to the policy object in use.
policy.ext_id: (Optional) Reference to the policy object in use.
- Policies
[]Ova
V2Vm Config Protection Policy State Policy - Reference to the policy object in use.
policy.ext_id: (Optional) Reference to the policy object in use.
- policies list(object)
- Reference to the policy object in use.
policy.ext_id: (Optional) Reference to the policy object in use.
- policies
List<Ova
V2Vm Config Protection Policy State Policy> - Reference to the policy object in use.
policy.ext_id: (Optional) Reference to the policy object in use.
- policies
Ova
V2Vm Config Protection Policy State Policy[] - Reference to the policy object in use.
policy.ext_id: (Optional) Reference to the policy object in use.
- policies
Sequence[Ova
V2Vm Config Protection Policy State Policy] - Reference to the policy object in use.
policy.ext_id: (Optional) Reference to the policy object in use.
- policies List<Property Map>
- Reference to the policy object in use.
policy.ext_id: (Optional) Reference to the policy object in use.
OvaV2VmConfigProtectionPolicyStatePolicy, OvaV2VmConfigProtectionPolicyStatePolicyArgs
- Ext
Id string
- Ext
Id string
- ext_
id string
- ext
Id String
- ext
Id string
- ext_
id str
- ext
Id String
OvaV2VmConfigSerialPort, OvaV2VmConfigSerialPortArgs
- Ext
Id string - Index int
- -(Optional) Index of the serial port.
- Is
Connected bool - -(Optional) Indicates whether the serial port is connected or not.
- Ext
Id string - Index int
- -(Optional) Index of the serial port.
- Is
Connected bool - -(Optional) Indicates whether the serial port is connected or not.
- ext_
id string - index number
- -(Optional) Index of the serial port.
- is_
connected bool - -(Optional) Indicates whether the serial port is connected or not.
- ext
Id String - index Integer
- -(Optional) Index of the serial port.
- is
Connected Boolean - -(Optional) Indicates whether the serial port is connected or not.
- ext
Id string - index number
- -(Optional) Index of the serial port.
- is
Connected boolean - -(Optional) Indicates whether the serial port is connected or not.
- ext_
id str - index int
- -(Optional) Index of the serial port.
- is_
connected bool - -(Optional) Indicates whether the serial port is connected or not.
- ext
Id String - index Number
- -(Optional) Index of the serial port.
- is
Connected Boolean - -(Optional) Indicates whether the serial port is connected or not.
OvaV2VmConfigSource, OvaV2VmConfigSourceArgs
- Entity
Type string - -(Optional) Reference to an entity from which the VM should be cloned or created. Values are:
- VM_RECOVERY_POINT: Reference to the recovery point entity from which the VM should be cloned or created.
- VM: Reference to an entity from which the VM should be cloned or created.
- Ext
Id string
- Entity
Type string - -(Optional) Reference to an entity from which the VM should be cloned or created. Values are:
- VM_RECOVERY_POINT: Reference to the recovery point entity from which the VM should be cloned or created.
- VM: Reference to an entity from which the VM should be cloned or created.
- Ext
Id string
- entity_
type string - -(Optional) Reference to an entity from which the VM should be cloned or created. Values are:
- VM_RECOVERY_POINT: Reference to the recovery point entity from which the VM should be cloned or created.
- VM: Reference to an entity from which the VM should be cloned or created.
- ext_
id string
- entity
Type String - -(Optional) Reference to an entity from which the VM should be cloned or created. Values are:
- VM_RECOVERY_POINT: Reference to the recovery point entity from which the VM should be cloned or created.
- VM: Reference to an entity from which the VM should be cloned or created.
- ext
Id String
- entity
Type string - -(Optional) Reference to an entity from which the VM should be cloned or created. Values are:
- VM_RECOVERY_POINT: Reference to the recovery point entity from which the VM should be cloned or created.
- VM: Reference to an entity from which the VM should be cloned or created.
- ext
Id string
- entity_
type str - -(Optional) Reference to an entity from which the VM should be cloned or created. Values are:
- VM_RECOVERY_POINT: Reference to the recovery point entity from which the VM should be cloned or created.
- VM: Reference to an entity from which the VM should be cloned or created.
- ext_
id str
- entity
Type String - -(Optional) Reference to an entity from which the VM should be cloned or created. Values are:
- VM_RECOVERY_POINT: Reference to the recovery point entity from which the VM should be cloned or created.
- VM: Reference to an entity from which the VM should be cloned or created.
- ext
Id String
OvaV2VmConfigStorageConfig, OvaV2VmConfigStorageConfigArgs
- Is
Flash boolMode Enabled - Indicates whether the virtual disk is pinned to the hot tier or not.
- Qos
Configs List<PiersKarsenbarg. Nutanix. Inputs. Ova V2Vm Config Storage Config Qos Config> - QoS parameters to be enforced.
qos_config.throttled_iops: (Optional) Throttled IOPS for the governed entities. The block size for the I/O is 32 kB.
- Is
Flash boolMode Enabled - Indicates whether the virtual disk is pinned to the hot tier or not.
- Qos
Configs []OvaV2Vm Config Storage Config Qos Config - QoS parameters to be enforced.
qos_config.throttled_iops: (Optional) Throttled IOPS for the governed entities. The block size for the I/O is 32 kB.
- is_
flash_ boolmode_ enabled - Indicates whether the virtual disk is pinned to the hot tier or not.
- qos_
configs list(object) - QoS parameters to be enforced.
qos_config.throttled_iops: (Optional) Throttled IOPS for the governed entities. The block size for the I/O is 32 kB.
- is
Flash BooleanMode Enabled - Indicates whether the virtual disk is pinned to the hot tier or not.
- qos
Configs List<OvaV2Vm Config Storage Config Qos Config> - QoS parameters to be enforced.
qos_config.throttled_iops: (Optional) Throttled IOPS for the governed entities. The block size for the I/O is 32 kB.
- is
Flash booleanMode Enabled - Indicates whether the virtual disk is pinned to the hot tier or not.
- qos
Configs OvaV2Vm Config Storage Config Qos Config[] - QoS parameters to be enforced.
qos_config.throttled_iops: (Optional) Throttled IOPS for the governed entities. The block size for the I/O is 32 kB.
- is_
flash_ boolmode_ enabled - Indicates whether the virtual disk is pinned to the hot tier or not.
- qos_
configs Sequence[OvaV2Vm Config Storage Config Qos Config] - QoS parameters to be enforced.
qos_config.throttled_iops: (Optional) Throttled IOPS for the governed entities. The block size for the I/O is 32 kB.
- is
Flash BooleanMode Enabled - Indicates whether the virtual disk is pinned to the hot tier or not.
- qos
Configs List<Property Map> - QoS parameters to be enforced.
qos_config.throttled_iops: (Optional) Throttled IOPS for the governed entities. The block size for the I/O is 32 kB.
OvaV2VmConfigStorageConfigQosConfig, OvaV2VmConfigStorageConfigQosConfigArgs
- Throttled
Iops int
- Throttled
Iops int
- throttled_
iops number
- throttled
Iops Integer
- throttled
Iops number
- throttled_
iops int
- throttled
Iops Number
OvaV2VmConfigVtpmConfig, OvaV2VmConfigVtpmConfigArgs
- Is
Vtpm boolEnabled - Indicates whether the virtual trusted platform module is enabled for the Guest OS or not.
- Version string
- Is
Vtpm boolEnabled - Indicates whether the virtual trusted platform module is enabled for the Guest OS or not.
- Version string
- is_
vtpm_ boolenabled - Indicates whether the virtual trusted platform module is enabled for the Guest OS or not.
- version string
- is
Vtpm BooleanEnabled - Indicates whether the virtual trusted platform module is enabled for the Guest OS or not.
- version String
- is
Vtpm booleanEnabled - Indicates whether the virtual trusted platform module is enabled for the Guest OS or not.
- version string
- is_
vtpm_ boolenabled - Indicates whether the virtual trusted platform module is enabled for the Guest OS or not.
- version str
- is
Vtpm BooleanEnabled - Indicates whether the virtual trusted platform module is enabled for the Guest OS or not.
- version String
Package Details
- Repository
- nutanix pierskarsenbarg/pulumi-nutanix
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
nutanixTerraform Provider.
published on Tuesday, May 26, 2026 by Piers Karsenbarg