Viewing docs for Nutanix v0.16.0
published on Tuesday, May 26, 2026 by Piers Karsenbarg
published on Tuesday, May 26, 2026 by Piers Karsenbarg
Viewing docs for Nutanix v0.16.0
published on Tuesday, May 26, 2026 by Piers Karsenbarg
published on Tuesday, May 26, 2026 by Piers Karsenbarg
This lists all accessible OVAs using the default pagination, which can be customized.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as nutanix from "@pierskarsenbarg/nutanix";
// Fetch all OVAs
const example = nutanix.getOvasV2({});
// filtered ovas on disk format
const exampleFilteredDiskFormat = nutanix.getOvasV2({
filter: "diskFormat eq Vmm.Content.OvaDiskFormat'QCOW2'",
});
// filtered ovas on name
const exampleFilteredName = nutanix.getOvasV2({
filter: "name eq 'example-ova'",
});
// filtered ovas on parentVm
const exampleFilteredParentVm = nutanix.getOvasV2({
filter: "parentVm eq 'LinuxServer_VM'",
});
// filtered ovas on sizeBytes
const exampleFilteredSize = nutanix.getOvasV2({
filter: "sizeBytes eq 57",
});
// limit, select, orderby and select example
const example2 = nutanix.getOvasV2({
filter: "startswith(parentVm, 'Linux')",
limit: 10,
select: "diskFormat,extId,name,vmConfig,checksum",
orderBy: "name desc",
});
import pulumi
import pulumi_nutanix as nutanix
# Fetch all OVAs
example = nutanix.get_ovas_v2()
# filtered ovas on disk format
example_filtered_disk_format = nutanix.get_ovas_v2(filter="diskFormat eq Vmm.Content.OvaDiskFormat'QCOW2'")
# filtered ovas on name
example_filtered_name = nutanix.get_ovas_v2(filter="name eq 'example-ova'")
# filtered ovas on parentVm
example_filtered_parent_vm = nutanix.get_ovas_v2(filter="parentVm eq 'LinuxServer_VM'")
# filtered ovas on sizeBytes
example_filtered_size = nutanix.get_ovas_v2(filter="sizeBytes eq 57")
# limit, select, orderby and select example
example2 = nutanix.get_ovas_v2(filter="startswith(parentVm, 'Linux')",
limit=10,
select="diskFormat,extId,name,vmConfig,checksum",
order_by="name desc")
package main
import (
"github.com/pierskarsenbarg/pulumi-nutanix/sdk/go/nutanix"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
// Fetch all OVAs
_, err := nutanix.GetOvasV2(ctx, &nutanix.GetOvasV2Args{}, nil)
if err != nil {
return err
}
// filtered ovas on disk format
_, err = nutanix.GetOvasV2(ctx, &nutanix.GetOvasV2Args{
Filter: pulumi.StringRef("diskFormat eq Vmm.Content.OvaDiskFormat'QCOW2'"),
}, nil)
if err != nil {
return err
}
// filtered ovas on name
_, err = nutanix.GetOvasV2(ctx, &nutanix.GetOvasV2Args{
Filter: pulumi.StringRef("name eq 'example-ova'"),
}, nil)
if err != nil {
return err
}
// filtered ovas on parentVm
_, err = nutanix.GetOvasV2(ctx, &nutanix.GetOvasV2Args{
Filter: pulumi.StringRef("parentVm eq 'LinuxServer_VM'"),
}, nil)
if err != nil {
return err
}
// filtered ovas on sizeBytes
_, err = nutanix.GetOvasV2(ctx, &nutanix.GetOvasV2Args{
Filter: pulumi.StringRef("sizeBytes eq 57"),
}, nil)
if err != nil {
return err
}
// limit, select, orderby and select example
_, err = nutanix.GetOvasV2(ctx, &nutanix.GetOvasV2Args{
Filter: pulumi.StringRef("startswith(parentVm, 'Linux')"),
Limit: pulumi.IntRef(10),
Select: pulumi.StringRef("diskFormat,extId,name,vmConfig,checksum"),
OrderBy: pulumi.StringRef("name desc"),
}, nil)
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Nutanix = PiersKarsenbarg.Nutanix;
return await Deployment.RunAsync(() =>
{
// Fetch all OVAs
var example = Nutanix.GetOvasV2.Invoke();
// filtered ovas on disk format
var exampleFilteredDiskFormat = Nutanix.GetOvasV2.Invoke(new()
{
Filter = "diskFormat eq Vmm.Content.OvaDiskFormat'QCOW2'",
});
// filtered ovas on name
var exampleFilteredName = Nutanix.GetOvasV2.Invoke(new()
{
Filter = "name eq 'example-ova'",
});
// filtered ovas on parentVm
var exampleFilteredParentVm = Nutanix.GetOvasV2.Invoke(new()
{
Filter = "parentVm eq 'LinuxServer_VM'",
});
// filtered ovas on sizeBytes
var exampleFilteredSize = Nutanix.GetOvasV2.Invoke(new()
{
Filter = "sizeBytes eq 57",
});
// limit, select, orderby and select example
var example2 = Nutanix.GetOvasV2.Invoke(new()
{
Filter = "startswith(parentVm, 'Linux')",
Limit = 10,
Select = "diskFormat,extId,name,vmConfig,checksum",
OrderBy = "name desc",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.nutanix.NutanixFunctions;
import com.pulumi.nutanix.inputs.GetOvasV2Args;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
// Fetch all OVAs
final var example = NutanixFunctions.getOvasV2(GetOvasV2Args.builder()
.build());
// filtered ovas on disk format
final var exampleFilteredDiskFormat = NutanixFunctions.getOvasV2(GetOvasV2Args.builder()
.filter("diskFormat eq Vmm.Content.OvaDiskFormat'QCOW2'")
.build());
// filtered ovas on name
final var exampleFilteredName = NutanixFunctions.getOvasV2(GetOvasV2Args.builder()
.filter("name eq 'example-ova'")
.build());
// filtered ovas on parentVm
final var exampleFilteredParentVm = NutanixFunctions.getOvasV2(GetOvasV2Args.builder()
.filter("parentVm eq 'LinuxServer_VM'")
.build());
// filtered ovas on sizeBytes
final var exampleFilteredSize = NutanixFunctions.getOvasV2(GetOvasV2Args.builder()
.filter("sizeBytes eq 57")
.build());
// limit, select, orderby and select example
final var example2 = NutanixFunctions.getOvasV2(GetOvasV2Args.builder()
.filter("startswith(parentVm, 'Linux')")
.limit(10)
.select("diskFormat,extId,name,vmConfig,checksum")
.orderBy("name desc")
.build());
}
}
variables:
# Fetch all OVAs
example:
fn::invoke:
function: nutanix:getOvasV2
arguments: {}
# filtered ovas on disk format
exampleFilteredDiskFormat:
fn::invoke:
function: nutanix:getOvasV2
arguments:
filter: diskFormat eq Vmm.Content.OvaDiskFormat'QCOW2'
# filtered ovas on name
exampleFilteredName:
fn::invoke:
function: nutanix:getOvasV2
arguments:
filter: name eq 'example-ova'
# filtered ovas on parentVm
exampleFilteredParentVm:
fn::invoke:
function: nutanix:getOvasV2
arguments:
filter: parentVm eq 'LinuxServer_VM'
# filtered ovas on sizeBytes
exampleFilteredSize:
fn::invoke:
function: nutanix:getOvasV2
arguments:
filter: sizeBytes eq 57
# limit, select, orderby and select example
example2:
fn::invoke:
function: nutanix:getOvasV2
arguments:
filter: startswith(parentVm, 'Linux')
limit: 10
select: diskFormat,extId,name,vmConfig,checksum
orderBy: name desc
pulumi {
required_providers {
nutanix = {
source = "pulumi/nutanix"
}
}
}
data "nutanix_getovasv2" "example" {
}
data "nutanix_getovasv2" "exampleFilteredDiskFormat" {
filter = "diskFormat eq Vmm.Content.OvaDiskFormat'QCOW2'"
}
data "nutanix_getovasv2" "exampleFilteredName" {
filter = "name eq 'example-ova'"
}
data "nutanix_getovasv2" "exampleFilteredParentVm" {
filter = "parentVm eq 'LinuxServer_VM'"
}
data "nutanix_getovasv2" "exampleFilteredSize" {
filter = "sizeBytes eq 57"
}
data "nutanix_getovasv2" "example2" {
filter = "startswith(parentVm, 'Linux')"
limit = 10
select = "diskFormat,extId,name,vmConfig,checksum"
order_by = "name desc"
}
// Fetch all OVAs
// filtered ovas on disk format
// filtered ovas on name
// filtered ovas on parentVm
// filtered ovas on sizeBytes
// limit, select, orderby and select example
Using getOvasV2
Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.
function getOvasV2(args: GetOvasV2Args, opts?: InvokeOptions): Promise<GetOvasV2Result>
function getOvasV2Output(args: GetOvasV2OutputArgs, opts?: InvokeOptions): Output<GetOvasV2Result>def get_ovas_v2(filter: Optional[str] = None,
limit: Optional[int] = None,
order_by: Optional[str] = None,
page: Optional[int] = None,
select: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetOvasV2Result
def get_ovas_v2_output(filter: pulumi.Input[Optional[str]] = None,
limit: pulumi.Input[Optional[int]] = None,
order_by: pulumi.Input[Optional[str]] = None,
page: pulumi.Input[Optional[int]] = None,
select: pulumi.Input[Optional[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetOvasV2Result]func GetOvasV2(ctx *Context, args *GetOvasV2Args, opts ...InvokeOption) (*GetOvasV2Result, error)
func GetOvasV2Output(ctx *Context, args *GetOvasV2OutputArgs, opts ...InvokeOption) GetOvasV2ResultOutput> Note: This function is named GetOvasV2 in the Go SDK.
public static class GetOvasV2
{
public static Task<GetOvasV2Result> InvokeAsync(GetOvasV2Args args, InvokeOptions? opts = null)
public static Output<GetOvasV2Result> Invoke(GetOvasV2InvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetOvasV2Result> getOvasV2(GetOvasV2Args args, InvokeOptions options)
public static Output<GetOvasV2Result> getOvasV2(GetOvasV2Args args, InvokeOptions options)
fn::invoke:
function: nutanix:index/getOvasV2:getOvasV2
arguments:
# arguments dictionarydata "nutanix_getovasv2" "name" {
# arguments
}The following arguments are supported:
- Filter string
- A URL query parameter that allows clients to filter a collection of resources. The expression specified with $filter is evaluated for each resource in the collection, and only items where the expression evaluates to true are included in the response. Expression specified with the $filter must conform to the OData V4.01 URL conventions. The filter can be applied to the following fields:
- diskFormat
- name
- parentVm
- sizeBytes
- Limit int
- A URL query parameter that specifies the total number of records returned in the result set. Must be a positive integer between 1 and 100. Any number out of this range will lead to a validation error. If the limit is not provided, a default value of 50 records will be returned in the result set.
- Order
By string - A URL query parameter that allows clients to specify the sort criteria for the returned list of objects. Resources can be sorted in ascending order using asc or descending order using desc. If asc or desc are not specified, the resources will be sorted in ascending order by default. The orderby can be applied to the following fields:
- createTime
- lastUpdateTime
- name
- sizeBytes
- Page int
- A URL query parameter that specifies the page number of the result set. It must be a positive integer between 0 and the maximum number of pages that are available for that resource. Any number out of this range might lead to no results.
- Select string
- A URL query parameter that allows clients to request a specific set of properties for each entity or complex type. Expression specified with the $select must conform to the OData V4.01 URL conventions. If a $select expression consists of a single select item that is an asterisk (i.e., *), then all properties on the matching resource will be returned. it can be applied to the following fields:
- clusterLocationExtIds
- createTime
- createdBy
- diskFormat
- extId
- lastUpdateTime
- links
- name
- parentVm
- sizeBytes
- tenantId
- vmConfig
- Filter string
- A URL query parameter that allows clients to filter a collection of resources. The expression specified with $filter is evaluated for each resource in the collection, and only items where the expression evaluates to true are included in the response. Expression specified with the $filter must conform to the OData V4.01 URL conventions. The filter can be applied to the following fields:
- diskFormat
- name
- parentVm
- sizeBytes
- Limit int
- A URL query parameter that specifies the total number of records returned in the result set. Must be a positive integer between 1 and 100. Any number out of this range will lead to a validation error. If the limit is not provided, a default value of 50 records will be returned in the result set.
- Order
By string - A URL query parameter that allows clients to specify the sort criteria for the returned list of objects. Resources can be sorted in ascending order using asc or descending order using desc. If asc or desc are not specified, the resources will be sorted in ascending order by default. The orderby can be applied to the following fields:
- createTime
- lastUpdateTime
- name
- sizeBytes
- Page int
- A URL query parameter that specifies the page number of the result set. It must be a positive integer between 0 and the maximum number of pages that are available for that resource. Any number out of this range might lead to no results.
- Select string
- A URL query parameter that allows clients to request a specific set of properties for each entity or complex type. Expression specified with the $select must conform to the OData V4.01 URL conventions. If a $select expression consists of a single select item that is an asterisk (i.e., *), then all properties on the matching resource will be returned. it can be applied to the following fields:
- clusterLocationExtIds
- createTime
- createdBy
- diskFormat
- extId
- lastUpdateTime
- links
- name
- parentVm
- sizeBytes
- tenantId
- vmConfig
- filter string
- A URL query parameter that allows clients to filter a collection of resources. The expression specified with $filter is evaluated for each resource in the collection, and only items where the expression evaluates to true are included in the response. Expression specified with the $filter must conform to the OData V4.01 URL conventions. The filter can be applied to the following fields:
- diskFormat
- name
- parentVm
- sizeBytes
- limit number
- A URL query parameter that specifies the total number of records returned in the result set. Must be a positive integer between 1 and 100. Any number out of this range will lead to a validation error. If the limit is not provided, a default value of 50 records will be returned in the result set.
- order_
by string - A URL query parameter that allows clients to specify the sort criteria for the returned list of objects. Resources can be sorted in ascending order using asc or descending order using desc. If asc or desc are not specified, the resources will be sorted in ascending order by default. The orderby can be applied to the following fields:
- createTime
- lastUpdateTime
- name
- sizeBytes
- page number
- A URL query parameter that specifies the page number of the result set. It must be a positive integer between 0 and the maximum number of pages that are available for that resource. Any number out of this range might lead to no results.
- select string
- A URL query parameter that allows clients to request a specific set of properties for each entity or complex type. Expression specified with the $select must conform to the OData V4.01 URL conventions. If a $select expression consists of a single select item that is an asterisk (i.e., *), then all properties on the matching resource will be returned. it can be applied to the following fields:
- clusterLocationExtIds
- createTime
- createdBy
- diskFormat
- extId
- lastUpdateTime
- links
- name
- parentVm
- sizeBytes
- tenantId
- vmConfig
- filter String
- A URL query parameter that allows clients to filter a collection of resources. The expression specified with $filter is evaluated for each resource in the collection, and only items where the expression evaluates to true are included in the response. Expression specified with the $filter must conform to the OData V4.01 URL conventions. The filter can be applied to the following fields:
- diskFormat
- name
- parentVm
- sizeBytes
- limit Integer
- A URL query parameter that specifies the total number of records returned in the result set. Must be a positive integer between 1 and 100. Any number out of this range will lead to a validation error. If the limit is not provided, a default value of 50 records will be returned in the result set.
- order
By String - A URL query parameter that allows clients to specify the sort criteria for the returned list of objects. Resources can be sorted in ascending order using asc or descending order using desc. If asc or desc are not specified, the resources will be sorted in ascending order by default. The orderby can be applied to the following fields:
- createTime
- lastUpdateTime
- name
- sizeBytes
- page Integer
- A URL query parameter that specifies the page number of the result set. It must be a positive integer between 0 and the maximum number of pages that are available for that resource. Any number out of this range might lead to no results.
- select String
- A URL query parameter that allows clients to request a specific set of properties for each entity or complex type. Expression specified with the $select must conform to the OData V4.01 URL conventions. If a $select expression consists of a single select item that is an asterisk (i.e., *), then all properties on the matching resource will be returned. it can be applied to the following fields:
- clusterLocationExtIds
- createTime
- createdBy
- diskFormat
- extId
- lastUpdateTime
- links
- name
- parentVm
- sizeBytes
- tenantId
- vmConfig
- filter string
- A URL query parameter that allows clients to filter a collection of resources. The expression specified with $filter is evaluated for each resource in the collection, and only items where the expression evaluates to true are included in the response. Expression specified with the $filter must conform to the OData V4.01 URL conventions. The filter can be applied to the following fields:
- diskFormat
- name
- parentVm
- sizeBytes
- limit number
- A URL query parameter that specifies the total number of records returned in the result set. Must be a positive integer between 1 and 100. Any number out of this range will lead to a validation error. If the limit is not provided, a default value of 50 records will be returned in the result set.
- order
By string - A URL query parameter that allows clients to specify the sort criteria for the returned list of objects. Resources can be sorted in ascending order using asc or descending order using desc. If asc or desc are not specified, the resources will be sorted in ascending order by default. The orderby can be applied to the following fields:
- createTime
- lastUpdateTime
- name
- sizeBytes
- page number
- A URL query parameter that specifies the page number of the result set. It must be a positive integer between 0 and the maximum number of pages that are available for that resource. Any number out of this range might lead to no results.
- select string
- A URL query parameter that allows clients to request a specific set of properties for each entity or complex type. Expression specified with the $select must conform to the OData V4.01 URL conventions. If a $select expression consists of a single select item that is an asterisk (i.e., *), then all properties on the matching resource will be returned. it can be applied to the following fields:
- clusterLocationExtIds
- createTime
- createdBy
- diskFormat
- extId
- lastUpdateTime
- links
- name
- parentVm
- sizeBytes
- tenantId
- vmConfig
- filter str
- A URL query parameter that allows clients to filter a collection of resources. The expression specified with $filter is evaluated for each resource in the collection, and only items where the expression evaluates to true are included in the response. Expression specified with the $filter must conform to the OData V4.01 URL conventions. The filter can be applied to the following fields:
- diskFormat
- name
- parentVm
- sizeBytes
- limit int
- A URL query parameter that specifies the total number of records returned in the result set. Must be a positive integer between 1 and 100. Any number out of this range will lead to a validation error. If the limit is not provided, a default value of 50 records will be returned in the result set.
- order_
by str - A URL query parameter that allows clients to specify the sort criteria for the returned list of objects. Resources can be sorted in ascending order using asc or descending order using desc. If asc or desc are not specified, the resources will be sorted in ascending order by default. The orderby can be applied to the following fields:
- createTime
- lastUpdateTime
- name
- sizeBytes
- page int
- A URL query parameter that specifies the page number of the result set. It must be a positive integer between 0 and the maximum number of pages that are available for that resource. Any number out of this range might lead to no results.
- select str
- A URL query parameter that allows clients to request a specific set of properties for each entity or complex type. Expression specified with the $select must conform to the OData V4.01 URL conventions. If a $select expression consists of a single select item that is an asterisk (i.e., *), then all properties on the matching resource will be returned. it can be applied to the following fields:
- clusterLocationExtIds
- createTime
- createdBy
- diskFormat
- extId
- lastUpdateTime
- links
- name
- parentVm
- sizeBytes
- tenantId
- vmConfig
- filter String
- A URL query parameter that allows clients to filter a collection of resources. The expression specified with $filter is evaluated for each resource in the collection, and only items where the expression evaluates to true are included in the response. Expression specified with the $filter must conform to the OData V4.01 URL conventions. The filter can be applied to the following fields:
- diskFormat
- name
- parentVm
- sizeBytes
- limit Number
- A URL query parameter that specifies the total number of records returned in the result set. Must be a positive integer between 1 and 100. Any number out of this range will lead to a validation error. If the limit is not provided, a default value of 50 records will be returned in the result set.
- order
By String - A URL query parameter that allows clients to specify the sort criteria for the returned list of objects. Resources can be sorted in ascending order using asc or descending order using desc. If asc or desc are not specified, the resources will be sorted in ascending order by default. The orderby can be applied to the following fields:
- createTime
- lastUpdateTime
- name
- sizeBytes
- page Number
- A URL query parameter that specifies the page number of the result set. It must be a positive integer between 0 and the maximum number of pages that are available for that resource. Any number out of this range might lead to no results.
- select String
- A URL query parameter that allows clients to request a specific set of properties for each entity or complex type. Expression specified with the $select must conform to the OData V4.01 URL conventions. If a $select expression consists of a single select item that is an asterisk (i.e., *), then all properties on the matching resource will be returned. it can be applied to the following fields:
- clusterLocationExtIds
- createTime
- createdBy
- diskFormat
- extId
- lastUpdateTime
- links
- name
- parentVm
- sizeBytes
- tenantId
- vmConfig
getOvasV2 Result
The following output properties are available:
- Id string
- The provider-assigned unique ID for this managed resource.
- Ovas
List<Piers
Karsenbarg. Nutanix. Outputs. Get Ovas V2Ova> - List of all OVAs
- Filter string
- A URL query parameter that allows clients to filter a collection of resources. The expression specified with $filter is evaluated for each resource in the collection, and only items where the expression evaluates to true are included in the response. Expression specified with the $filter must conform to the OData V4.01 URL conventions. The filter can be applied to the following fields:
- diskFormat
- name
- parentVm
- sizeBytes
- Limit int
- A URL query parameter that specifies the total number of records returned in the result set. Must be a positive integer between 1 and 100. Any number out of this range will lead to a validation error. If the limit is not provided, a default value of 50 records will be returned in the result set.
- Order
By string - A URL query parameter that allows clients to specify the sort criteria for the returned list of objects. Resources can be sorted in ascending order using asc or descending order using desc. If asc or desc are not specified, the resources will be sorted in ascending order by default. The orderby can be applied to the following fields:
- createTime
- lastUpdateTime
- name
- sizeBytes
- Page int
- A URL query parameter that specifies the page number of the result set. It must be a positive integer between 0 and the maximum number of pages that are available for that resource. Any number out of this range might lead to no results.
- Select string
- A URL query parameter that allows clients to request a specific set of properties for each entity or complex type. Expression specified with the $select must conform to the OData V4.01 URL conventions. If a $select expression consists of a single select item that is an asterisk (i.e., *), then all properties on the matching resource will be returned. it can be applied to the following fields:
- clusterLocationExtIds
- createTime
- createdBy
- diskFormat
- extId
- lastUpdateTime
- links
- name
- parentVm
- sizeBytes
- tenantId
- vmConfig
- Id string
- The provider-assigned unique ID for this managed resource.
- Ovas
[]Get
Ovas V2Ova - List of all OVAs
- Filter string
- A URL query parameter that allows clients to filter a collection of resources. The expression specified with $filter is evaluated for each resource in the collection, and only items where the expression evaluates to true are included in the response. Expression specified with the $filter must conform to the OData V4.01 URL conventions. The filter can be applied to the following fields:
- diskFormat
- name
- parentVm
- sizeBytes
- Limit int
- A URL query parameter that specifies the total number of records returned in the result set. Must be a positive integer between 1 and 100. Any number out of this range will lead to a validation error. If the limit is not provided, a default value of 50 records will be returned in the result set.
- Order
By string - A URL query parameter that allows clients to specify the sort criteria for the returned list of objects. Resources can be sorted in ascending order using asc or descending order using desc. If asc or desc are not specified, the resources will be sorted in ascending order by default. The orderby can be applied to the following fields:
- createTime
- lastUpdateTime
- name
- sizeBytes
- Page int
- A URL query parameter that specifies the page number of the result set. It must be a positive integer between 0 and the maximum number of pages that are available for that resource. Any number out of this range might lead to no results.
- Select string
- A URL query parameter that allows clients to request a specific set of properties for each entity or complex type. Expression specified with the $select must conform to the OData V4.01 URL conventions. If a $select expression consists of a single select item that is an asterisk (i.e., *), then all properties on the matching resource will be returned. it can be applied to the following fields:
- clusterLocationExtIds
- createTime
- createdBy
- diskFormat
- extId
- lastUpdateTime
- links
- name
- parentVm
- sizeBytes
- tenantId
- vmConfig
- id string
- The provider-assigned unique ID for this managed resource.
- ovas list(object)
- List of all OVAs
- filter string
- A URL query parameter that allows clients to filter a collection of resources. The expression specified with $filter is evaluated for each resource in the collection, and only items where the expression evaluates to true are included in the response. Expression specified with the $filter must conform to the OData V4.01 URL conventions. The filter can be applied to the following fields:
- diskFormat
- name
- parentVm
- sizeBytes
- limit number
- A URL query parameter that specifies the total number of records returned in the result set. Must be a positive integer between 1 and 100. Any number out of this range will lead to a validation error. If the limit is not provided, a default value of 50 records will be returned in the result set.
- order_
by string - A URL query parameter that allows clients to specify the sort criteria for the returned list of objects. Resources can be sorted in ascending order using asc or descending order using desc. If asc or desc are not specified, the resources will be sorted in ascending order by default. The orderby can be applied to the following fields:
- createTime
- lastUpdateTime
- name
- sizeBytes
- page number
- A URL query parameter that specifies the page number of the result set. It must be a positive integer between 0 and the maximum number of pages that are available for that resource. Any number out of this range might lead to no results.
- select string
- A URL query parameter that allows clients to request a specific set of properties for each entity or complex type. Expression specified with the $select must conform to the OData V4.01 URL conventions. If a $select expression consists of a single select item that is an asterisk (i.e., *), then all properties on the matching resource will be returned. it can be applied to the following fields:
- clusterLocationExtIds
- createTime
- createdBy
- diskFormat
- extId
- lastUpdateTime
- links
- name
- parentVm
- sizeBytes
- tenantId
- vmConfig
- id String
- The provider-assigned unique ID for this managed resource.
- ovas
List<Get
Ovas V2Ova> - List of all OVAs
- filter String
- A URL query parameter that allows clients to filter a collection of resources. The expression specified with $filter is evaluated for each resource in the collection, and only items where the expression evaluates to true are included in the response. Expression specified with the $filter must conform to the OData V4.01 URL conventions. The filter can be applied to the following fields:
- diskFormat
- name
- parentVm
- sizeBytes
- limit Integer
- A URL query parameter that specifies the total number of records returned in the result set. Must be a positive integer between 1 and 100. Any number out of this range will lead to a validation error. If the limit is not provided, a default value of 50 records will be returned in the result set.
- order
By String - A URL query parameter that allows clients to specify the sort criteria for the returned list of objects. Resources can be sorted in ascending order using asc or descending order using desc. If asc or desc are not specified, the resources will be sorted in ascending order by default. The orderby can be applied to the following fields:
- createTime
- lastUpdateTime
- name
- sizeBytes
- page Integer
- A URL query parameter that specifies the page number of the result set. It must be a positive integer between 0 and the maximum number of pages that are available for that resource. Any number out of this range might lead to no results.
- select String
- A URL query parameter that allows clients to request a specific set of properties for each entity or complex type. Expression specified with the $select must conform to the OData V4.01 URL conventions. If a $select expression consists of a single select item that is an asterisk (i.e., *), then all properties on the matching resource will be returned. it can be applied to the following fields:
- clusterLocationExtIds
- createTime
- createdBy
- diskFormat
- extId
- lastUpdateTime
- links
- name
- parentVm
- sizeBytes
- tenantId
- vmConfig
- id string
- The provider-assigned unique ID for this managed resource.
- ovas
Get
Ovas V2Ova[] - List of all OVAs
- filter string
- A URL query parameter that allows clients to filter a collection of resources. The expression specified with $filter is evaluated for each resource in the collection, and only items where the expression evaluates to true are included in the response. Expression specified with the $filter must conform to the OData V4.01 URL conventions. The filter can be applied to the following fields:
- diskFormat
- name
- parentVm
- sizeBytes
- limit number
- A URL query parameter that specifies the total number of records returned in the result set. Must be a positive integer between 1 and 100. Any number out of this range will lead to a validation error. If the limit is not provided, a default value of 50 records will be returned in the result set.
- order
By string - A URL query parameter that allows clients to specify the sort criteria for the returned list of objects. Resources can be sorted in ascending order using asc or descending order using desc. If asc or desc are not specified, the resources will be sorted in ascending order by default. The orderby can be applied to the following fields:
- createTime
- lastUpdateTime
- name
- sizeBytes
- page number
- A URL query parameter that specifies the page number of the result set. It must be a positive integer between 0 and the maximum number of pages that are available for that resource. Any number out of this range might lead to no results.
- select string
- A URL query parameter that allows clients to request a specific set of properties for each entity or complex type. Expression specified with the $select must conform to the OData V4.01 URL conventions. If a $select expression consists of a single select item that is an asterisk (i.e., *), then all properties on the matching resource will be returned. it can be applied to the following fields:
- clusterLocationExtIds
- createTime
- createdBy
- diskFormat
- extId
- lastUpdateTime
- links
- name
- parentVm
- sizeBytes
- tenantId
- vmConfig
- id str
- The provider-assigned unique ID for this managed resource.
- ovas
Sequence[Get
Ovas V2Ova] - List of all OVAs
- filter str
- A URL query parameter that allows clients to filter a collection of resources. The expression specified with $filter is evaluated for each resource in the collection, and only items where the expression evaluates to true are included in the response. Expression specified with the $filter must conform to the OData V4.01 URL conventions. The filter can be applied to the following fields:
- diskFormat
- name
- parentVm
- sizeBytes
- limit int
- A URL query parameter that specifies the total number of records returned in the result set. Must be a positive integer between 1 and 100. Any number out of this range will lead to a validation error. If the limit is not provided, a default value of 50 records will be returned in the result set.
- order_
by str - A URL query parameter that allows clients to specify the sort criteria for the returned list of objects. Resources can be sorted in ascending order using asc or descending order using desc. If asc or desc are not specified, the resources will be sorted in ascending order by default. The orderby can be applied to the following fields:
- createTime
- lastUpdateTime
- name
- sizeBytes
- page int
- A URL query parameter that specifies the page number of the result set. It must be a positive integer between 0 and the maximum number of pages that are available for that resource. Any number out of this range might lead to no results.
- select str
- A URL query parameter that allows clients to request a specific set of properties for each entity or complex type. Expression specified with the $select must conform to the OData V4.01 URL conventions. If a $select expression consists of a single select item that is an asterisk (i.e., *), then all properties on the matching resource will be returned. it can be applied to the following fields:
- clusterLocationExtIds
- createTime
- createdBy
- diskFormat
- extId
- lastUpdateTime
- links
- name
- parentVm
- sizeBytes
- tenantId
- vmConfig
- id String
- The provider-assigned unique ID for this managed resource.
- ovas List<Property Map>
- List of all OVAs
- filter String
- A URL query parameter that allows clients to filter a collection of resources. The expression specified with $filter is evaluated for each resource in the collection, and only items where the expression evaluates to true are included in the response. Expression specified with the $filter must conform to the OData V4.01 URL conventions. The filter can be applied to the following fields:
- diskFormat
- name
- parentVm
- sizeBytes
- limit Number
- A URL query parameter that specifies the total number of records returned in the result set. Must be a positive integer between 1 and 100. Any number out of this range will lead to a validation error. If the limit is not provided, a default value of 50 records will be returned in the result set.
- order
By String - A URL query parameter that allows clients to specify the sort criteria for the returned list of objects. Resources can be sorted in ascending order using asc or descending order using desc. If asc or desc are not specified, the resources will be sorted in ascending order by default. The orderby can be applied to the following fields:
- createTime
- lastUpdateTime
- name
- sizeBytes
- page Number
- A URL query parameter that specifies the page number of the result set. It must be a positive integer between 0 and the maximum number of pages that are available for that resource. Any number out of this range might lead to no results.
- select String
- A URL query parameter that allows clients to request a specific set of properties for each entity or complex type. Expression specified with the $select must conform to the OData V4.01 URL conventions. If a $select expression consists of a single select item that is an asterisk (i.e., *), then all properties on the matching resource will be returned. it can be applied to the following fields:
- clusterLocationExtIds
- createTime
- createdBy
- diskFormat
- extId
- lastUpdateTime
- links
- name
- parentVm
- sizeBytes
- tenantId
- vmConfig
Supporting Types
GetOvasV2Ova
- Checksums
List<Piers
Karsenbarg. Nutanix. Inputs. Get Ovas V2Ova Checksum> - The checksum of an OVA.
- Cluster
Location List<string>Ext Ids - Create
Time string - Time when the OVA was created time.
- Created
Bies List<PiersKarsenbarg. Nutanix. Inputs. Get Ovas V2Ova Created By> - Information of the user.
- Disk
Format string - 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 - A globally unique identifier of an instance that is suitable for external consumption.
- Last
Update stringTime - Time when the OVA was last updated time.
- Links
List<Piers
Karsenbarg. Nutanix. Inputs. Get Ovas V2Ova Link> - A HATEOAS style link for the response. Each link contains a user-friendly name identifying the link and an address for retrieving the particular resource.
- Name string
- Name of the OVA.
- Parent
Vm string - The parent VM used for creating the OVA.
- Size
Bytes int - Size of OVA in bytes.
- Sources
List<Piers
Karsenbarg. Nutanix. Inputs. Get Ovas V2Ova Source> - Tenant
Id string - A globally unique identifier that represents the tenant that owns this entity. The system automatically assigns it, and it and is immutable from an API consumer perspective (some use cases may cause this Id to change - For instance, a use case may require the transfer of ownership of the entity, but these cases are handled automatically on the server).
- Vm
Configs List<PiersKarsenbarg. Nutanix. Inputs. Get Ovas V2Ova Vm Config>
- Checksums
[]Get
Ovas V2Ova Checksum - The checksum of an OVA.
- Cluster
Location []stringExt Ids - Create
Time string - Time when the OVA was created time.
- Created
Bies []GetOvas V2Ova Created By - Information of the user.
- Disk
Format string - 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 - A globally unique identifier of an instance that is suitable for external consumption.
- Last
Update stringTime - Time when the OVA was last updated time.
- Links
[]Get
Ovas V2Ova Link - A HATEOAS style link for the response. Each link contains a user-friendly name identifying the link and an address for retrieving the particular resource.
- Name string
- Name of the OVA.
- Parent
Vm string - The parent VM used for creating the OVA.
- Size
Bytes int - Size of OVA in bytes.
- Sources
[]Get
Ovas V2Ova Source - Tenant
Id string - A globally unique identifier that represents the tenant that owns this entity. The system automatically assigns it, and it and is immutable from an API consumer perspective (some use cases may cause this Id to change - For instance, a use case may require the transfer of ownership of the entity, but these cases are handled automatically on the server).
- Vm
Configs []GetOvas V2Ova Vm Config
- checksums list(object)
- The checksum of an OVA.
- cluster_
location_ list(string)ext_ ids - create_
time string - Time when the OVA was created time.
- created_
bies list(object) - Information of the user.
- disk_
format string - 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 - A globally unique identifier of an instance that is suitable for external consumption.
- last_
update_ stringtime - Time when the OVA was last updated time.
- links list(object)
- A HATEOAS style link for the response. Each link contains a user-friendly name identifying the link and an address for retrieving the particular resource.
- name string
- Name of the OVA.
- parent_
vm string - The parent VM used for creating the OVA.
- size_
bytes number - Size of OVA in bytes.
- sources list(object)
- tenant_
id string - A globally unique identifier that represents the tenant that owns this entity. The system automatically assigns it, and it and is immutable from an API consumer perspective (some use cases may cause this Id to change - For instance, a use case may require the transfer of ownership of the entity, but these cases are handled automatically on the server).
- vm_
configs list(object)
- checksums
List<Get
Ovas V2Ova Checksum> - The checksum of an OVA.
- cluster
Location List<String>Ext Ids - create
Time String - Time when the OVA was created time.
- created
Bies List<GetOvas V2Ova Created By> - Information of the user.
- disk
Format String - 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 - A globally unique identifier of an instance that is suitable for external consumption.
- last
Update StringTime - Time when the OVA was last updated time.
- links
List<Get
Ovas V2Ova Link> - A HATEOAS style link for the response. Each link contains a user-friendly name identifying the link and an address for retrieving the particular resource.
- name String
- Name of the OVA.
- parent
Vm String - The parent VM used for creating the OVA.
- size
Bytes Integer - Size of OVA in bytes.
- sources
List<Get
Ovas V2Ova Source> - tenant
Id String - A globally unique identifier that represents the tenant that owns this entity. The system automatically assigns it, and it and is immutable from an API consumer perspective (some use cases may cause this Id to change - For instance, a use case may require the transfer of ownership of the entity, but these cases are handled automatically on the server).
- vm
Configs List<GetOvas V2Ova Vm Config>
- checksums
Get
Ovas V2Ova Checksum[] - The checksum of an OVA.
- cluster
Location string[]Ext Ids - create
Time string - Time when the OVA was created time.
- created
Bies GetOvas V2Ova Created By[] - Information of the user.
- disk
Format string - 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 - A globally unique identifier of an instance that is suitable for external consumption.
- last
Update stringTime - Time when the OVA was last updated time.
- links
Get
Ovas V2Ova Link[] - A HATEOAS style link for the response. Each link contains a user-friendly name identifying the link and an address for retrieving the particular resource.
- name string
- Name of the OVA.
- parent
Vm string - The parent VM used for creating the OVA.
- size
Bytes number - Size of OVA in bytes.
- sources
Get
Ovas V2Ova Source[] - tenant
Id string - A globally unique identifier that represents the tenant that owns this entity. The system automatically assigns it, and it and is immutable from an API consumer perspective (some use cases may cause this Id to change - For instance, a use case may require the transfer of ownership of the entity, but these cases are handled automatically on the server).
- vm
Configs GetOvas V2Ova Vm Config[]
- checksums
Sequence[Get
Ovas V2Ova Checksum] - The checksum of an OVA.
- cluster_
location_ Sequence[str]ext_ ids - create_
time str - Time when the OVA was created time.
- created_
bies Sequence[GetOvas V2Ova Created By] - Information of the user.
- disk_
format str - 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 - A globally unique identifier of an instance that is suitable for external consumption.
- last_
update_ strtime - Time when the OVA was last updated time.
- links
Sequence[Get
Ovas V2Ova Link] - A HATEOAS style link for the response. Each link contains a user-friendly name identifying the link and an address for retrieving the particular resource.
- name str
- Name of the OVA.
- parent_
vm str - The parent VM used for creating the OVA.
- size_
bytes int - Size of OVA in bytes.
- sources
Sequence[Get
Ovas V2Ova Source] - tenant_
id str - A globally unique identifier that represents the tenant that owns this entity. The system automatically assigns it, and it and is immutable from an API consumer perspective (some use cases may cause this Id to change - For instance, a use case may require the transfer of ownership of the entity, but these cases are handled automatically on the server).
- vm_
configs Sequence[GetOvas V2Ova Vm Config]
- checksums List<Property Map>
- The checksum of an OVA.
- cluster
Location List<String>Ext Ids - create
Time String - Time when the OVA was created time.
- created
Bies List<Property Map> - Information of the user.
- disk
Format String - 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 - A globally unique identifier of an instance that is suitable for external consumption.
- last
Update StringTime - Time when the OVA was last updated time.
- links List<Property Map>
- A HATEOAS style link for the response. Each link contains a user-friendly name identifying the link and an address for retrieving the particular resource.
- name String
- Name of the OVA.
- parent
Vm String - The parent VM used for creating the OVA.
- size
Bytes Number - Size of OVA in bytes.
- sources List<Property Map>
- tenant
Id String - A globally unique identifier that represents the tenant that owns this entity. The system automatically assigns it, and it and is immutable from an API consumer perspective (some use cases may cause this Id to change - For instance, a use case may require the transfer of ownership of the entity, but these cases are handled automatically on the server).
- vm
Configs List<Property Map>
GetOvasV2OvaChecksum
- Ova
Sha1Checksums List<PiersKarsenbarg. Nutanix. Inputs. Get Ovas V2Ova Checksum Ova Sha1Checksum> - The SHA1 checksum of the OVA file.
- Ova
Sha256Checksums List<PiersKarsenbarg. Nutanix. Inputs. Get Ovas V2Ova Checksum Ova Sha256Checksum> - The SHA256 checksum of the OVA file.
- Ova
Sha1Checksums []GetOvas V2Ova Checksum Ova Sha1Checksum - The SHA1 checksum of the OVA file.
- Ova
Sha256Checksums []GetOvas V2Ova Checksum Ova Sha256Checksum - The SHA256 checksum of the OVA file.
- ova_
sha1_ list(object)checksums - The SHA1 checksum of the OVA file.
- ova_
sha256_ list(object)checksums - The SHA256 checksum of the OVA file.
- ova
Sha1Checksums List<GetOvas V2Ova Checksum Ova Sha1Checksum> - The SHA1 checksum of the OVA file.
- ova
Sha256Checksums List<GetOvas V2Ova Checksum Ova Sha256Checksum> - The SHA256 checksum of the OVA file.
- ova
Sha1Checksums GetOvas V2Ova Checksum Ova Sha1Checksum[] - The SHA1 checksum of the OVA file.
- ova
Sha256Checksums GetOvas V2Ova Checksum Ova Sha256Checksum[] - The SHA256 checksum of the OVA file.
- ova_
sha1_ Sequence[Getchecksums Ovas V2Ova Checksum Ova Sha1Checksum] - The SHA1 checksum of the OVA file.
- ova_
sha256_ Sequence[Getchecksums Ovas V2Ova Checksum Ova Sha256Checksum] - The SHA256 checksum of the OVA file.
- ova
Sha1Checksums List<Property Map> - The SHA1 checksum of the OVA file.
- ova
Sha256Checksums List<Property Map> - The SHA256 checksum of the OVA file.
GetOvasV2OvaChecksumOvaSha1Checksum
- Hex
Digest string - The hexadecimal representation of the checksum.
- Hex
Digest string - The hexadecimal representation of the checksum.
- hex_
digest string - The hexadecimal representation of the checksum.
- hex
Digest String - The hexadecimal representation of the checksum.
- hex
Digest string - The hexadecimal representation of the checksum.
- hex_
digest str - The hexadecimal representation of the checksum.
- hex
Digest String - The hexadecimal representation of the checksum.
GetOvasV2OvaChecksumOvaSha256Checksum
- Hex
Digest string - The hexadecimal representation of the checksum.
- Hex
Digest string - The hexadecimal representation of the checksum.
- hex_
digest string - The hexadecimal representation of the checksum.
- hex
Digest String - The hexadecimal representation of the checksum.
- hex
Digest string - The hexadecimal representation of the checksum.
- hex_
digest str - The hexadecimal representation of the checksum.
- hex
Digest String - The hexadecimal representation of the checksum.
GetOvasV2OvaCreatedBy
- Additional
Attributes List<PiersKarsenbarg. Nutanix. Inputs. Get Ovas V2Ova Created By Additional Attribute> - Buckets
Access List<PiersKeys Karsenbarg. Nutanix. Inputs. Get Ovas V2Ova Created By Buckets Access Key> - Created
By string - Information of the user.
- Created
Time string - Creation
Type string - Description string
- Display
Name string - Email
Id string - Ext
Id string - A globally unique identifier of an instance that is suitable for external consumption.
- First
Name string - Idp
Id string - Is
Force boolReset Password Enabled - Last
Login stringTime - Last
Name string - Last
Updated stringBy - Last
Updated stringTime - Links
List<Piers
Karsenbarg. Nutanix. Inputs. Get Ovas V2Ova Created By Link> - A HATEOAS style link for the response. Each link contains a user-friendly name identifying the link and an address for retrieving the particular resource.
- Locale string
- Middle
Initial string - Region string
- Status string
- Tenant
Id string - A globally unique identifier that represents the tenant that owns this entity. The system automatically assigns it, and it and is immutable from an API consumer perspective (some use cases may cause this Id to change - For instance, a use case may require the transfer of ownership of the entity, but these cases are handled automatically on the server).
- User
Type string - Username string
- Additional
Attributes []GetOvas V2Ova Created By Additional Attribute - Buckets
Access []GetKeys Ovas V2Ova Created By Buckets Access Key - Created
By string - Information of the user.
- Created
Time string - Creation
Type string - Description string
- Display
Name string - Email
Id string - Ext
Id string - A globally unique identifier of an instance that is suitable for external consumption.
- First
Name string - Idp
Id string - Is
Force boolReset Password Enabled - Last
Login stringTime - Last
Name string - Last
Updated stringBy - Last
Updated stringTime - Links
[]Get
Ovas V2Ova Created By Link - A HATEOAS style link for the response. Each link contains a user-friendly name identifying the link and an address for retrieving the particular resource.
- Locale string
- Middle
Initial string - Region string
- Status string
- Tenant
Id string - A globally unique identifier that represents the tenant that owns this entity. The system automatically assigns it, and it and is immutable from an API consumer perspective (some use cases may cause this Id to change - For instance, a use case may require the transfer of ownership of the entity, but these cases are handled automatically on the server).
- User
Type string - Username string
- additional_
attributes list(object) - buckets_
access_ list(object)keys - created_
by string - Information of the user.
- created_
time string - creation_
type string - description string
- display_
name string - email_
id string - ext_
id string - A globally unique identifier of an instance that is suitable for external consumption.
- first_
name string - idp_
id string - is_
force_ boolreset_ password_ enabled - last_
login_ stringtime - last_
name string - last_
updated_ stringby - last_
updated_ stringtime - links list(object)
- A HATEOAS style link for the response. Each link contains a user-friendly name identifying the link and an address for retrieving the particular resource.
- locale string
- middle_
initial string - region string
- status string
- tenant_
id string - A globally unique identifier that represents the tenant that owns this entity. The system automatically assigns it, and it and is immutable from an API consumer perspective (some use cases may cause this Id to change - For instance, a use case may require the transfer of ownership of the entity, but these cases are handled automatically on the server).
- user_
type string - username string
- additional
Attributes List<GetOvas V2Ova Created By Additional Attribute> - buckets
Access List<GetKeys Ovas V2Ova Created By Buckets Access Key> - created
By String - Information of the user.
- created
Time String - creation
Type String - description String
- display
Name String - email
Id String - ext
Id String - A globally unique identifier of an instance that is suitable for external consumption.
- first
Name String - idp
Id String - is
Force BooleanReset Password Enabled - last
Login StringTime - last
Name String - last
Updated StringBy - last
Updated StringTime - links
List<Get
Ovas V2Ova Created By Link> - A HATEOAS style link for the response. Each link contains a user-friendly name identifying the link and an address for retrieving the particular resource.
- locale String
- middle
Initial String - region String
- status String
- tenant
Id String - A globally unique identifier that represents the tenant that owns this entity. The system automatically assigns it, and it and is immutable from an API consumer perspective (some use cases may cause this Id to change - For instance, a use case may require the transfer of ownership of the entity, but these cases are handled automatically on the server).
- user
Type String - username String
- additional
Attributes GetOvas V2Ova Created By Additional Attribute[] - buckets
Access GetKeys Ovas V2Ova Created By Buckets Access Key[] - created
By string - Information of the user.
- created
Time string - creation
Type string - description string
- display
Name string - email
Id string - ext
Id string - A globally unique identifier of an instance that is suitable for external consumption.
- first
Name string - idp
Id string - is
Force booleanReset Password Enabled - last
Login stringTime - last
Name string - last
Updated stringBy - last
Updated stringTime - links
Get
Ovas V2Ova Created By Link[] - A HATEOAS style link for the response. Each link contains a user-friendly name identifying the link and an address for retrieving the particular resource.
- locale string
- middle
Initial string - region string
- status string
- tenant
Id string - A globally unique identifier that represents the tenant that owns this entity. The system automatically assigns it, and it and is immutable from an API consumer perspective (some use cases may cause this Id to change - For instance, a use case may require the transfer of ownership of the entity, but these cases are handled automatically on the server).
- user
Type string - username string
- additional_
attributes Sequence[GetOvas V2Ova Created By Additional Attribute] - buckets_
access_ Sequence[Getkeys Ovas V2Ova Created By Buckets Access Key] - created_
by str - Information of the user.
- created_
time str - creation_
type str - description str
- display_
name str - email_
id str - ext_
id str - A globally unique identifier of an instance that is suitable for external consumption.
- first_
name str - idp_
id str - is_
force_ boolreset_ password_ enabled - last_
login_ strtime - last_
name str - last_
updated_ strby - last_
updated_ strtime - links
Sequence[Get
Ovas V2Ova Created By Link] - A HATEOAS style link for the response. Each link contains a user-friendly name identifying the link and an address for retrieving the particular resource.
- locale str
- middle_
initial str - region str
- status str
- tenant_
id str - A globally unique identifier that represents the tenant that owns this entity. The system automatically assigns it, and it and is immutable from an API consumer perspective (some use cases may cause this Id to change - For instance, a use case may require the transfer of ownership of the entity, but these cases are handled automatically on the server).
- user_
type str - username str
- additional
Attributes List<Property Map> - buckets
Access List<Property Map>Keys - created
By String - Information of the user.
- created
Time String - creation
Type String - description String
- display
Name String - email
Id String - ext
Id String - A globally unique identifier of an instance that is suitable for external consumption.
- first
Name String - idp
Id String - is
Force BooleanReset Password Enabled - last
Login StringTime - last
Name String - last
Updated StringBy - last
Updated StringTime - links List<Property Map>
- A HATEOAS style link for the response. Each link contains a user-friendly name identifying the link and an address for retrieving the particular resource.
- locale String
- middle
Initial String - region String
- status String
- tenant
Id String - A globally unique identifier that represents the tenant that owns this entity. The system automatically assigns it, and it and is immutable from an API consumer perspective (some use cases may cause this Id to change - For instance, a use case may require the transfer of ownership of the entity, but these cases are handled automatically on the server).
- user
Type String - username String
GetOvasV2OvaCreatedByAdditionalAttribute
- Name string
- Name of the OVA.
- Values
List<Piers
Karsenbarg. Nutanix. Inputs. Get Ovas V2Ova Created By Additional Attribute Value>
- Name string
- Name of the OVA.
- Values
[]Get
Ovas V2Ova Created By Additional Attribute Value
- name string
- Name of the OVA.
- values list(object)
- name String
- Name of the OVA.
- values
List<Get
Ovas V2Ova Created By Additional Attribute Value>
- name string
- Name of the OVA.
- values
Get
Ovas V2Ova Created By Additional Attribute Value[]
- name str
- Name of the OVA.
- values
Sequence[Get
Ovas V2Ova Created By Additional Attribute Value]
- name String
- Name of the OVA.
- values List<Property Map>
GetOvasV2OvaCreatedByAdditionalAttributeValue
- Boolean bool
- Integer int
- Integer
Lists List<int> - Map
Of List<PiersStrings Karsenbarg. Nutanix. Inputs. Get Ovas V2Ova Created 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 []GetStrings Ovas V2Ova Created 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<GetStrings Ovas V2Ova Created 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 GetStrings Ovas V2Ova Created 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[Getstrings Ovas V2Ova Created 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>
GetOvasV2OvaCreatedByAdditionalAttributeValueMapOfString
- 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>
GetOvasV2OvaCreatedByBucketsAccessKey
- Access
Key stringName - Created
Time string - Ext
Id string - A globally unique identifier of an instance that is suitable for external consumption.
- Links
List<Piers
Karsenbarg. Nutanix. Inputs. Get Ovas V2Ova Created By Buckets Access Key Link> - A HATEOAS style link for the response. Each link contains a user-friendly name identifying the link and an address for retrieving the particular resource.
- Secret
Access stringKey - User
Id string
- Access
Key stringName - Created
Time string - Ext
Id string - A globally unique identifier of an instance that is suitable for external consumption.
- Links
[]Get
Ovas V2Ova Created By Buckets Access Key Link - A HATEOAS style link for the response. Each link contains a user-friendly name identifying the link and an address for retrieving the particular resource.
- Secret
Access stringKey - User
Id string
- access_
key_ stringname - created_
time string - ext_
id string - A globally unique identifier of an instance that is suitable for external consumption.
- links list(object)
- A HATEOAS style link for the response. Each link contains a user-friendly name identifying the link and an address for retrieving the particular resource.
- secret_
access_ stringkey - user_
id string
- access
Key StringName - created
Time String - ext
Id String - A globally unique identifier of an instance that is suitable for external consumption.
- links
List<Get
Ovas V2Ova Created By Buckets Access Key Link> - A HATEOAS style link for the response. Each link contains a user-friendly name identifying the link and an address for retrieving the particular resource.
- secret
Access StringKey - user
Id String
- access
Key stringName - created
Time string - ext
Id string - A globally unique identifier of an instance that is suitable for external consumption.
- links
Get
Ovas V2Ova Created By Buckets Access Key Link[] - A HATEOAS style link for the response. Each link contains a user-friendly name identifying the link and an address for retrieving the particular resource.
- secret
Access stringKey - user
Id string
- access_
key_ strname - created_
time str - ext_
id str - A globally unique identifier of an instance that is suitable for external consumption.
- links
Sequence[Get
Ovas V2Ova Created By Buckets Access Key Link] - A HATEOAS style link for the response. Each link contains a user-friendly name identifying the link and an address for retrieving the particular resource.
- secret_
access_ strkey - user_
id str
- access
Key StringName - created
Time String - ext
Id String - A globally unique identifier of an instance that is suitable for external consumption.
- links List<Property Map>
- A HATEOAS style link for the response. Each link contains a user-friendly name identifying the link and an address for retrieving the particular resource.
- secret
Access StringKey - user
Id String
GetOvasV2OvaCreatedByBucketsAccessKeyLink
GetOvasV2OvaCreatedByLink
GetOvasV2OvaLink
GetOvasV2OvaSource
GetOvasV2OvaSourceObjectLiteSource
- Key string
- Key string
- key string
- key String
- key string
- key str
- key String
GetOvasV2OvaSourceOvaUrlSource
- basic_
auths list(object) - url string
- basic
Auths List<Property Map> - url String
GetOvasV2OvaSourceOvaUrlSourceBasicAuth
GetOvasV2OvaSourceOvaVmSource
- Disk
File stringFormat - Vm
Ext stringId
- Disk
File stringFormat - Vm
Ext stringId
- disk_
file_ stringformat - vm_
ext_ stringid
- disk
File StringFormat - vm
Ext StringId
- disk
File stringFormat - vm
Ext stringId
- disk_
file_ strformat - vm_
ext_ strid
- disk
File StringFormat - vm
Ext StringId
GetOvasV2OvaVmConfig
- Apc
Configs List<PiersKarsenbarg. Nutanix. Inputs. Get Ovas V2Ova Vm Config Apc Config> - Availability
Zones List<PiersKarsenbarg. Nutanix. Inputs. Get Ovas V2Ova Vm Config Availability Zone> - Bios
Uuid string - Boot
Configs List<PiersKarsenbarg. Nutanix. Inputs. Get Ovas V2Ova Vm Config Boot Config> - Categories
List<Piers
Karsenbarg. Nutanix. Inputs. Get Ovas V2Ova Vm Config Category> - Clusters
List<Piers
Karsenbarg. Nutanix. Inputs. Get Ovas V2Ova Vm Config Cluster> - Create
Time string - Time when the OVA was created time.
- Description string
- Enabled
Cpu List<string>Features - Ext
Id string - A globally unique identifier of an instance that is suitable for external consumption.
- Generation
Uuid string - Guest
Customizations List<PiersKarsenbarg. Nutanix. Inputs. Get Ovas V2Ova Vm Config Guest Customization> - Hardware
Clock stringTimezone - Hosts
List<Piers
Karsenbarg. Nutanix. Inputs. Get Ovas V2Ova Vm Config Host> - Is
Agent boolVm - Is
Branding boolEnabled - Is
Cpu boolHotplug Enabled - Is
Cpu boolPassthrough Enabled - Is
Gpu boolConsole Enabled - Is
Memory boolOvercommit Enabled - Is
Scsi boolController Enabled - Is
Vcpu boolHard Pinning Enabled - Is
Vga boolConsole Enabled - Machine
Type string - Memory
Size intBytes - Name string
- Name of the OVA.
- Num
Cores intPer Socket - Num
Numa intNodes - Num
Sockets int - Num
Threads intPer Core - Ownership
Infos List<PiersKarsenbarg. Nutanix. Inputs. Get Ovas V2Ova Vm Config Ownership Info> - Projects
List<Piers
Karsenbarg. Nutanix. Inputs. Get Ovas V2Ova Vm Config Project> - Protection
Policy List<PiersStates Karsenbarg. Nutanix. Inputs. Get Ovas V2Ova Vm Config Protection Policy State> - Protection
Type string - Serial
Ports List<PiersKarsenbarg. Nutanix. Inputs. Get Ovas V2Ova Vm Config Serial Port> - Sources
List<Piers
Karsenbarg. Nutanix. Inputs. Get Ovas V2Ova Vm Config Source> - Storage
Configs List<PiersKarsenbarg. Nutanix. Inputs. Get Ovas V2Ova Vm Config Storage Config> - Update
Time string - Vtpm
Configs List<PiersKarsenbarg. Nutanix. Inputs. Get Ovas V2Ova Vm Config Vtpm Config> - Cd
Roms List<PiersKarsenbarg. Nutanix. Inputs. Get Ovas V2Ova Vm Config Cd Rom> - Disks
List<Piers
Karsenbarg. Nutanix. Inputs. Get Ovas V2Ova Vm Config Disk> - Gpuses
List<Piers
Karsenbarg. Nutanix. Inputs. Get Ovas V2Ova Vm Config Gpus> - Guest
Tools List<PiersKarsenbarg. Nutanix. Inputs. Get Ovas V2Ova Vm Config Guest Tool> - Nics
List<Piers
Karsenbarg. Nutanix. Inputs. Get Ovas V2Ova Vm Config Nic> - Power
State string
- Apc
Configs []GetOvas V2Ova Vm Config Apc Config - Availability
Zones []GetOvas V2Ova Vm Config Availability Zone - Bios
Uuid string - Boot
Configs []GetOvas V2Ova Vm Config Boot Config - Categories
[]Get
Ovas V2Ova Vm Config Category - Clusters
[]Get
Ovas V2Ova Vm Config Cluster - Create
Time string - Time when the OVA was created time.
- Description string
- Enabled
Cpu []stringFeatures - Ext
Id string - A globally unique identifier of an instance that is suitable for external consumption.
- Generation
Uuid string - Guest
Customizations []GetOvas V2Ova Vm Config Guest Customization - Hardware
Clock stringTimezone - Hosts
[]Get
Ovas V2Ova Vm Config Host - Is
Agent boolVm - Is
Branding boolEnabled - Is
Cpu boolHotplug Enabled - Is
Cpu boolPassthrough Enabled - Is
Gpu boolConsole Enabled - Is
Memory boolOvercommit Enabled - Is
Scsi boolController Enabled - Is
Vcpu boolHard Pinning Enabled - Is
Vga boolConsole Enabled - Machine
Type string - Memory
Size intBytes - Name string
- Name of the OVA.
- Num
Cores intPer Socket - Num
Numa intNodes - Num
Sockets int - Num
Threads intPer Core - Ownership
Infos []GetOvas V2Ova Vm Config Ownership Info - Projects
[]Get
Ovas V2Ova Vm Config Project - Protection
Policy []GetStates Ovas V2Ova Vm Config Protection Policy State - Protection
Type string - Serial
Ports []GetOvas V2Ova Vm Config Serial Port - Sources
[]Get
Ovas V2Ova Vm Config Source - Storage
Configs []GetOvas V2Ova Vm Config Storage Config - Update
Time string - Vtpm
Configs []GetOvas V2Ova Vm Config Vtpm Config - Cd
Roms []GetOvas V2Ova Vm Config Cd Rom - Disks
[]Get
Ovas V2Ova Vm Config Disk - Gpuses
[]Get
Ovas V2Ova Vm Config Gpus - Guest
Tools []GetOvas V2Ova Vm Config Guest Tool - Nics
[]Get
Ovas V2Ova Vm Config Nic - Power
State string
- apc_
configs list(object) - availability_
zones list(object) - bios_
uuid string - boot_
configs list(object) - categories list(object)
- clusters list(object)
- create_
time string - Time when the OVA was created time.
- description string
- enabled_
cpu_ list(string)features - ext_
id string - A globally unique identifier of an instance that is suitable for external consumption.
- generation_
uuid string - guest_
customizations list(object) - hardware_
clock_ stringtimezone - hosts list(object)
- is_
agent_ boolvm - is_
branding_ boolenabled - is_
cpu_ boolhotplug_ enabled - is_
cpu_ boolpassthrough_ enabled - is_
gpu_ boolconsole_ enabled - is_
memory_ boolovercommit_ enabled - is_
scsi_ boolcontroller_ enabled - is_
vcpu_ boolhard_ pinning_ enabled - is_
vga_ boolconsole_ enabled - machine_
type string - memory_
size_ numberbytes - name string
- Name of the OVA.
- num_
cores_ numberper_ socket - num_
numa_ numbernodes - num_
sockets number - num_
threads_ numberper_ core - ownership_
infos list(object) - projects list(object)
- protection_
policy_ list(object)states - protection_
type string - serial_
ports list(object) - sources list(object)
- storage_
configs list(object) - update_
time string - vtpm_
configs list(object) - cd_
roms list(object) - disks list(object)
- gpuses list(object)
- guest_
tools list(object) - nics list(object)
- power_
state string
- apc
Configs List<GetOvas V2Ova Vm Config Apc Config> - availability
Zones List<GetOvas V2Ova Vm Config Availability Zone> - bios
Uuid String - boot
Configs List<GetOvas V2Ova Vm Config Boot Config> - categories
List<Get
Ovas V2Ova Vm Config Category> - clusters
List<Get
Ovas V2Ova Vm Config Cluster> - create
Time String - Time when the OVA was created time.
- description String
- enabled
Cpu List<String>Features - ext
Id String - A globally unique identifier of an instance that is suitable for external consumption.
- generation
Uuid String - guest
Customizations List<GetOvas V2Ova Vm Config Guest Customization> - hardware
Clock StringTimezone - hosts
List<Get
Ovas V2Ova Vm Config Host> - is
Agent BooleanVm - is
Branding BooleanEnabled - is
Cpu BooleanHotplug Enabled - is
Cpu BooleanPassthrough Enabled - is
Gpu BooleanConsole Enabled - is
Memory BooleanOvercommit Enabled - is
Scsi BooleanController Enabled - is
Vcpu BooleanHard Pinning Enabled - is
Vga BooleanConsole Enabled - machine
Type String - memory
Size IntegerBytes - name String
- Name of the OVA.
- num
Cores IntegerPer Socket - num
Numa IntegerNodes - num
Sockets Integer - num
Threads IntegerPer Core - ownership
Infos List<GetOvas V2Ova Vm Config Ownership Info> - projects
List<Get
Ovas V2Ova Vm Config Project> - protection
Policy List<GetStates Ovas V2Ova Vm Config Protection Policy State> - protection
Type String - serial
Ports List<GetOvas V2Ova Vm Config Serial Port> - sources
List<Get
Ovas V2Ova Vm Config Source> - storage
Configs List<GetOvas V2Ova Vm Config Storage Config> - update
Time String - vtpm
Configs List<GetOvas V2Ova Vm Config Vtpm Config> - cd
Roms List<GetOvas V2Ova Vm Config Cd Rom> - disks
List<Get
Ovas V2Ova Vm Config Disk> - gpuses
List<Get
Ovas V2Ova Vm Config Gpus> - guest
Tools List<GetOvas V2Ova Vm Config Guest Tool> - nics
List<Get
Ovas V2Ova Vm Config Nic> - power
State String
- apc
Configs GetOvas V2Ova Vm Config Apc Config[] - availability
Zones GetOvas V2Ova Vm Config Availability Zone[] - bios
Uuid string - boot
Configs GetOvas V2Ova Vm Config Boot Config[] - categories
Get
Ovas V2Ova Vm Config Category[] - clusters
Get
Ovas V2Ova Vm Config Cluster[] - create
Time string - Time when the OVA was created time.
- description string
- enabled
Cpu string[]Features - ext
Id string - A globally unique identifier of an instance that is suitable for external consumption.
- generation
Uuid string - guest
Customizations GetOvas V2Ova Vm Config Guest Customization[] - hardware
Clock stringTimezone - hosts
Get
Ovas V2Ova Vm Config Host[] - is
Agent booleanVm - is
Branding booleanEnabled - is
Cpu booleanHotplug Enabled - is
Cpu booleanPassthrough Enabled - is
Gpu booleanConsole Enabled - is
Memory booleanOvercommit Enabled - is
Scsi booleanController Enabled - is
Vcpu booleanHard Pinning Enabled - is
Vga booleanConsole Enabled - machine
Type string - memory
Size numberBytes - name string
- Name of the OVA.
- num
Cores numberPer Socket - num
Numa numberNodes - num
Sockets number - num
Threads numberPer Core - ownership
Infos GetOvas V2Ova Vm Config Ownership Info[] - projects
Get
Ovas V2Ova Vm Config Project[] - protection
Policy GetStates Ovas V2Ova Vm Config Protection Policy State[] - protection
Type string - serial
Ports GetOvas V2Ova Vm Config Serial Port[] - sources
Get
Ovas V2Ova Vm Config Source[] - storage
Configs GetOvas V2Ova Vm Config Storage Config[] - update
Time string - vtpm
Configs GetOvas V2Ova Vm Config Vtpm Config[] - cd
Roms GetOvas V2Ova Vm Config Cd Rom[] - disks
Get
Ovas V2Ova Vm Config Disk[] - gpuses
Get
Ovas V2Ova Vm Config Gpus[] - guest
Tools GetOvas V2Ova Vm Config Guest Tool[] - nics
Get
Ovas V2Ova Vm Config Nic[] - power
State string
- apc_
configs Sequence[GetOvas V2Ova Vm Config Apc Config] - availability_
zones Sequence[GetOvas V2Ova Vm Config Availability Zone] - bios_
uuid str - boot_
configs Sequence[GetOvas V2Ova Vm Config Boot Config] - categories
Sequence[Get
Ovas V2Ova Vm Config Category] - clusters
Sequence[Get
Ovas V2Ova Vm Config Cluster] - create_
time str - Time when the OVA was created time.
- description str
- enabled_
cpu_ Sequence[str]features - ext_
id str - A globally unique identifier of an instance that is suitable for external consumption.
- generation_
uuid str - guest_
customizations Sequence[GetOvas V2Ova Vm Config Guest Customization] - hardware_
clock_ strtimezone - hosts
Sequence[Get
Ovas V2Ova Vm Config Host] - is_
agent_ boolvm - is_
branding_ boolenabled - is_
cpu_ boolhotplug_ enabled - is_
cpu_ boolpassthrough_ enabled - is_
gpu_ boolconsole_ enabled - is_
memory_ boolovercommit_ enabled - is_
scsi_ boolcontroller_ enabled - is_
vcpu_ boolhard_ pinning_ enabled - is_
vga_ boolconsole_ enabled - machine_
type str - memory_
size_ intbytes - name str
- Name of the OVA.
- num_
cores_ intper_ socket - num_
numa_ intnodes - num_
sockets int - num_
threads_ intper_ core - ownership_
infos Sequence[GetOvas V2Ova Vm Config Ownership Info] - projects
Sequence[Get
Ovas V2Ova Vm Config Project] - protection_
policy_ Sequence[Getstates Ovas V2Ova Vm Config Protection Policy State] - protection_
type str - serial_
ports Sequence[GetOvas V2Ova Vm Config Serial Port] - sources
Sequence[Get
Ovas V2Ova Vm Config Source] - storage_
configs Sequence[GetOvas V2Ova Vm Config Storage Config] - update_
time str - vtpm_
configs Sequence[GetOvas V2Ova Vm Config Vtpm Config] - cd_
roms Sequence[GetOvas V2Ova Vm Config Cd Rom] - disks
Sequence[Get
Ovas V2Ova Vm Config Disk] - gpuses
Sequence[Get
Ovas V2Ova Vm Config Gpus] - guest_
tools Sequence[GetOvas V2Ova Vm Config Guest Tool] - nics
Sequence[Get
Ovas V2Ova Vm Config Nic] - power_
state str
- apc
Configs List<Property Map> - availability
Zones List<Property Map> - bios
Uuid String - boot
Configs List<Property Map> - categories List<Property Map>
- clusters List<Property Map>
- create
Time String - Time when the OVA was created time.
- description String
- enabled
Cpu List<String>Features - ext
Id String - A globally unique identifier of an instance that is suitable for external consumption.
- generation
Uuid String - guest
Customizations List<Property Map> - hardware
Clock StringTimezone - hosts List<Property Map>
- is
Agent BooleanVm - is
Branding BooleanEnabled - is
Cpu BooleanHotplug Enabled - is
Cpu BooleanPassthrough Enabled - is
Gpu BooleanConsole Enabled - is
Memory BooleanOvercommit Enabled - is
Scsi BooleanController Enabled - is
Vcpu BooleanHard Pinning Enabled - is
Vga BooleanConsole Enabled - machine
Type String - memory
Size NumberBytes - name String
- Name of the OVA.
- num
Cores NumberPer Socket - num
Numa NumberNodes - num
Sockets Number - num
Threads NumberPer Core - ownership
Infos List<Property Map> - projects List<Property Map>
- protection
Policy List<Property Map>States - protection
Type String - serial
Ports List<Property Map> - sources List<Property Map>
- storage
Configs List<Property Map> - update
Time String - vtpm
Configs List<Property Map> - cd
Roms List<Property Map> - disks List<Property Map>
- gpuses List<Property Map>
- guest
Tools List<Property Map> - nics List<Property Map>
- power
State String
GetOvasV2OvaVmConfigApcConfig
GetOvasV2OvaVmConfigApcConfigCpuModel
GetOvasV2OvaVmConfigAvailabilityZone
- Ext
Id string - A globally unique identifier of an instance that is suitable for external consumption.
- Ext
Id string - A globally unique identifier of an instance that is suitable for external consumption.
- ext_
id string - A globally unique identifier of an instance that is suitable for external consumption.
- ext
Id String - A globally unique identifier of an instance that is suitable for external consumption.
- ext
Id string - A globally unique identifier of an instance that is suitable for external consumption.
- ext_
id str - A globally unique identifier of an instance that is suitable for external consumption.
- ext
Id String - A globally unique identifier of an instance that is suitable for external consumption.
GetOvasV2OvaVmConfigBootConfig
GetOvasV2OvaVmConfigBootConfigLegacyBoot
- boot_
devices list(object) - boot_
orders list(string)
- boot
Devices List<Property Map> - boot
Orders List<String>
GetOvasV2OvaVmConfigBootConfigLegacyBootBootDevice
GetOvasV2OvaVmConfigBootConfigLegacyBootBootDeviceBootDeviceDisk
GetOvasV2OvaVmConfigBootConfigLegacyBootBootDeviceBootDeviceDiskDiskAddress
GetOvasV2OvaVmConfigBootConfigLegacyBootBootDeviceBootDeviceNic
- Mac
Address string
- Mac
Address string
- mac_
address string
- mac
Address String
- mac
Address string
- mac_
address str
- mac
Address String
GetOvasV2OvaVmConfigBootConfigUefiBoot
- boot
Devices List<Property Map> - boot
Orders List<String> - is
Secure BooleanBoot Enabled - nvram
Devices List<Property Map>
GetOvasV2OvaVmConfigBootConfigUefiBootBootDevice
GetOvasV2OvaVmConfigBootConfigUefiBootBootDeviceBootDeviceDisk
GetOvasV2OvaVmConfigBootConfigUefiBootBootDeviceBootDeviceDiskDiskAddress
GetOvasV2OvaVmConfigBootConfigUefiBootBootDeviceBootDeviceNic
- Mac
Address string
- Mac
Address string
- mac_
address string
- mac
Address String
- mac
Address string
- mac_
address str
- mac
Address String
GetOvasV2OvaVmConfigBootConfigUefiBootNvramDevice
GetOvasV2OvaVmConfigBootConfigUefiBootNvramDeviceBackingStorageInfo
- Data
Sources List<PiersKarsenbarg. Nutanix. Inputs. Get Ovas V2Ova Vm 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. Get Ovas V2Ova Vm Config Boot Config Uefi Boot Nvram Device Backing Storage Info Storage Config> - Storage
Containers List<PiersKarsenbarg. Nutanix. Inputs. Get Ovas V2Ova Vm Config Boot Config Uefi Boot Nvram Device Backing Storage Info Storage Container>
- Data
Sources []GetOvas V2Ova Vm Config Boot Config Uefi Boot Nvram Device Backing Storage Info Data Source - Disk
Ext stringId - Disk
Size intBytes - Is
Migration boolIn Progress - Storage
Configs []GetOvas V2Ova Vm Config Boot Config Uefi Boot Nvram Device Backing Storage Info Storage Config - Storage
Containers []GetOvas V2Ova Vm Config Boot Config Uefi Boot Nvram Device Backing Storage Info Storage Container
- data
Sources List<GetOvas V2Ova Vm 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<GetOvas V2Ova Vm Config Boot Config Uefi Boot Nvram Device Backing Storage Info Storage Config> - storage
Containers List<GetOvas V2Ova Vm Config Boot Config Uefi Boot Nvram Device Backing Storage Info Storage Container>
- data
Sources GetOvas V2Ova Vm Config Boot Config Uefi Boot Nvram Device Backing Storage Info Data Source[] - disk
Ext stringId - disk
Size numberBytes - is
Migration booleanIn Progress - storage
Configs GetOvas V2Ova Vm Config Boot Config Uefi Boot Nvram Device Backing Storage Info Storage Config[] - storage
Containers GetOvas V2Ova Vm Config Boot Config Uefi Boot Nvram Device Backing Storage Info Storage Container[]
- data_
sources Sequence[GetOvas V2Ova Vm 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[GetOvas V2Ova Vm Config Boot Config Uefi Boot Nvram Device Backing Storage Info Storage Config] - storage_
containers Sequence[GetOvas V2Ova Vm Config Boot Config Uefi Boot Nvram Device Backing Storage Info Storage Container]
GetOvasV2OvaVmConfigBootConfigUefiBootNvramDeviceBackingStorageInfoDataSource
GetOvasV2OvaVmConfigBootConfigUefiBootNvramDeviceBackingStorageInfoDataSourceReference
- Image
References List<PiersKarsenbarg. Nutanix. Inputs. Get Ovas V2Ova Vm Config Boot Config Uefi Boot Nvram Device Backing Storage Info Data Source Reference Image Reference> - Vm
Disk List<PiersReferences Karsenbarg. Nutanix. Inputs. Get Ovas V2Ova Vm Config Boot Config Uefi Boot Nvram Device Backing Storage Info Data Source Reference Vm Disk Reference>
GetOvasV2OvaVmConfigBootConfigUefiBootNvramDeviceBackingStorageInfoDataSourceReferenceImageReference
- Image
Ext stringId
- Image
Ext stringId
- image_
ext_ stringid
- image
Ext StringId
- image
Ext stringId
- image_
ext_ strid
- image
Ext StringId
GetOvasV2OvaVmConfigBootConfigUefiBootNvramDeviceBackingStorageInfoDataSourceReferenceVmDiskReference
- Disk
Addresses List<PiersKarsenbarg. Nutanix. Inputs. Get Ovas V2Ova Vm 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. Get Ovas V2Ova Vm Config Boot Config Uefi Boot Nvram Device Backing Storage Info Data Source Reference Vm Disk Reference Vm Reference>
GetOvasV2OvaVmConfigBootConfigUefiBootNvramDeviceBackingStorageInfoDataSourceReferenceVmDiskReferenceDiskAddress
GetOvasV2OvaVmConfigBootConfigUefiBootNvramDeviceBackingStorageInfoDataSourceReferenceVmDiskReferenceVmReference
- Ext
Id string - A globally unique identifier of an instance that is suitable for external consumption.
- Ext
Id string - A globally unique identifier of an instance that is suitable for external consumption.
- ext_
id string - A globally unique identifier of an instance that is suitable for external consumption.
- ext
Id String - A globally unique identifier of an instance that is suitable for external consumption.
- ext
Id string - A globally unique identifier of an instance that is suitable for external consumption.
- ext_
id str - A globally unique identifier of an instance that is suitable for external consumption.
- ext
Id String - A globally unique identifier of an instance that is suitable for external consumption.
GetOvasV2OvaVmConfigBootConfigUefiBootNvramDeviceBackingStorageInfoStorageConfig
- Is
Flash boolMode Enabled
- Is
Flash boolMode Enabled
- is
Flash BooleanMode Enabled
- is
Flash booleanMode Enabled
- is
Flash BooleanMode Enabled
GetOvasV2OvaVmConfigBootConfigUefiBootNvramDeviceBackingStorageInfoStorageContainer
- Ext
Id string - A globally unique identifier of an instance that is suitable for external consumption.
- Ext
Id string - A globally unique identifier of an instance that is suitable for external consumption.
- ext_
id string - A globally unique identifier of an instance that is suitable for external consumption.
- ext
Id String - A globally unique identifier of an instance that is suitable for external consumption.
- ext
Id string - A globally unique identifier of an instance that is suitable for external consumption.
- ext_
id str - A globally unique identifier of an instance that is suitable for external consumption.
- ext
Id String - A globally unique identifier of an instance that is suitable for external consumption.
GetOvasV2OvaVmConfigCategory
- Ext
Id string - A globally unique identifier of an instance that is suitable for external consumption.
- Ext
Id string - A globally unique identifier of an instance that is suitable for external consumption.
- ext_
id string - A globally unique identifier of an instance that is suitable for external consumption.
- ext
Id String - A globally unique identifier of an instance that is suitable for external consumption.
- ext
Id string - A globally unique identifier of an instance that is suitable for external consumption.
- ext_
id str - A globally unique identifier of an instance that is suitable for external consumption.
- ext
Id String - A globally unique identifier of an instance that is suitable for external consumption.
GetOvasV2OvaVmConfigCdRom
- Backing
Infos List<PiersKarsenbarg. Nutanix. Inputs. Get Ovas V2Ova Vm Config Cd Rom Backing Info> - Disk
Addresses List<PiersKarsenbarg. Nutanix. Inputs. Get Ovas V2Ova Vm Config Cd Rom Disk Address> - Ext
Id string - A globally unique identifier of an instance that is suitable for external consumption.
- Iso
Type string
- Backing
Infos []GetOvas V2Ova Vm Config Cd Rom Backing Info - Disk
Addresses []GetOvas V2Ova Vm Config Cd Rom Disk Address - Ext
Id string - A globally unique identifier of an instance that is suitable for external consumption.
- Iso
Type string
- backing_
infos list(object) - disk_
addresses list(object) - ext_
id string - A globally unique identifier of an instance that is suitable for external consumption.
- iso_
type string
- backing
Infos List<GetOvas V2Ova Vm Config Cd Rom Backing Info> - disk
Addresses List<GetOvas V2Ova Vm Config Cd Rom Disk Address> - ext
Id String - A globally unique identifier of an instance that is suitable for external consumption.
- iso
Type String
- backing
Infos GetOvas V2Ova Vm Config Cd Rom Backing Info[] - disk
Addresses GetOvas V2Ova Vm Config Cd Rom Disk Address[] - ext
Id string - A globally unique identifier of an instance that is suitable for external consumption.
- iso
Type string
- backing_
infos Sequence[GetOvas V2Ova Vm Config Cd Rom Backing Info] - disk_
addresses Sequence[GetOvas V2Ova Vm Config Cd Rom Disk Address] - ext_
id str - A globally unique identifier of an instance that is suitable for external consumption.
- iso_
type str
- backing
Infos List<Property Map> - disk
Addresses List<Property Map> - ext
Id String - A globally unique identifier of an instance that is suitable for external consumption.
- iso
Type String
GetOvasV2OvaVmConfigCdRomBackingInfo
- Data
Sources List<PiersKarsenbarg. Nutanix. Inputs. Get Ovas V2Ova Vm Config Cd Rom Backing Info Data Source> - Disk
Ext stringId - Disk
Size intBytes - Is
Migration boolIn Progress - Storage
Configs List<PiersKarsenbarg. Nutanix. Inputs. Get Ovas V2Ova Vm Config Cd Rom Backing Info Storage Config> - Storage
Containers List<PiersKarsenbarg. Nutanix. Inputs. Get Ovas V2Ova Vm Config Cd Rom Backing Info Storage Container>
GetOvasV2OvaVmConfigCdRomBackingInfoDataSource
GetOvasV2OvaVmConfigCdRomBackingInfoDataSourceReference
GetOvasV2OvaVmConfigCdRomBackingInfoDataSourceReferenceImageReference
- Image
Ext stringId
- Image
Ext stringId
- image_
ext_ stringid
- image
Ext StringId
- image
Ext stringId
- image_
ext_ strid
- image
Ext StringId
GetOvasV2OvaVmConfigCdRomBackingInfoDataSourceReferenceVmDiskReference
GetOvasV2OvaVmConfigCdRomBackingInfoDataSourceReferenceVmDiskReferenceDiskAddress
GetOvasV2OvaVmConfigCdRomBackingInfoDataSourceReferenceVmDiskReferenceVmReference
- Ext
Id string - A globally unique identifier of an instance that is suitable for external consumption.
- Ext
Id string - A globally unique identifier of an instance that is suitable for external consumption.
- ext_
id string - A globally unique identifier of an instance that is suitable for external consumption.
- ext
Id String - A globally unique identifier of an instance that is suitable for external consumption.
- ext
Id string - A globally unique identifier of an instance that is suitable for external consumption.
- ext_
id str - A globally unique identifier of an instance that is suitable for external consumption.
- ext
Id String - A globally unique identifier of an instance that is suitable for external consumption.
GetOvasV2OvaVmConfigCdRomBackingInfoStorageConfig
- Is
Flash boolMode Enabled
- Is
Flash boolMode Enabled
- is
Flash BooleanMode Enabled
- is
Flash booleanMode Enabled
- is
Flash BooleanMode Enabled
GetOvasV2OvaVmConfigCdRomBackingInfoStorageContainer
- Ext
Id string - A globally unique identifier of an instance that is suitable for external consumption.
- Ext
Id string - A globally unique identifier of an instance that is suitable for external consumption.
- ext_
id string - A globally unique identifier of an instance that is suitable for external consumption.
- ext
Id String - A globally unique identifier of an instance that is suitable for external consumption.
- ext
Id string - A globally unique identifier of an instance that is suitable for external consumption.
- ext_
id str - A globally unique identifier of an instance that is suitable for external consumption.
- ext
Id String - A globally unique identifier of an instance that is suitable for external consumption.
GetOvasV2OvaVmConfigCdRomDiskAddress
GetOvasV2OvaVmConfigCluster
- Ext
Id string - A globally unique identifier of an instance that is suitable for external consumption.
- Ext
Id string - A globally unique identifier of an instance that is suitable for external consumption.
- ext_
id string - A globally unique identifier of an instance that is suitable for external consumption.
- ext
Id String - A globally unique identifier of an instance that is suitable for external consumption.
- ext
Id string - A globally unique identifier of an instance that is suitable for external consumption.
- ext_
id str - A globally unique identifier of an instance that is suitable for external consumption.
- ext
Id String - A globally unique identifier of an instance that is suitable for external consumption.
GetOvasV2OvaVmConfigDisk
- Backing
Infos List<PiersKarsenbarg. Nutanix. Inputs. Get Ovas V2Ova Vm Config Disk Backing Info> - Disk
Addresses List<PiersKarsenbarg. Nutanix. Inputs. Get Ovas V2Ova Vm Config Disk Disk Address> - Ext
Id string - A globally unique identifier of an instance that is suitable for external consumption.
- Backing
Infos []GetOvas V2Ova Vm Config Disk Backing Info - Disk
Addresses []GetOvas V2Ova Vm Config Disk Disk Address - Ext
Id string - A globally unique identifier of an instance that is suitable for external consumption.
- backing_
infos list(object) - disk_
addresses list(object) - ext_
id string - A globally unique identifier of an instance that is suitable for external consumption.
- backing
Infos List<GetOvas V2Ova Vm Config Disk Backing Info> - disk
Addresses List<GetOvas V2Ova Vm Config Disk Disk Address> - ext
Id String - A globally unique identifier of an instance that is suitable for external consumption.
- backing
Infos GetOvas V2Ova Vm Config Disk Backing Info[] - disk
Addresses GetOvas V2Ova Vm Config Disk Disk Address[] - ext
Id string - A globally unique identifier of an instance that is suitable for external consumption.
- backing_
infos Sequence[GetOvas V2Ova Vm Config Disk Backing Info] - disk_
addresses Sequence[GetOvas V2Ova Vm Config Disk Disk Address] - ext_
id str - A globally unique identifier of an instance that is suitable for external consumption.
- backing
Infos List<Property Map> - disk
Addresses List<Property Map> - ext
Id String - A globally unique identifier of an instance that is suitable for external consumption.
GetOvasV2OvaVmConfigDiskBackingInfo
GetOvasV2OvaVmConfigDiskBackingInfoAdfsVolumeGroupReference
- Volume
Group stringExt Id
- Volume
Group stringExt Id
- volume_
group_ stringext_ id
- volume
Group StringExt Id
- volume
Group stringExt Id
- volume
Group StringExt Id
GetOvasV2OvaVmConfigDiskBackingInfoVmDisk
- Data
Sources List<PiersKarsenbarg. Nutanix. Inputs. Get Ovas V2Ova Vm Config Disk Backing Info Vm Disk Data Source> - Disk
Ext stringId - Disk
Size intBytes - Is
Migration boolIn Progress - Storage
Configs List<PiersKarsenbarg. Nutanix. Inputs. Get Ovas V2Ova Vm Config Disk Backing Info Vm Disk Storage Config> - Storage
Containers List<PiersKarsenbarg. Nutanix. Inputs. Get Ovas V2Ova Vm Config Disk Backing Info Vm Disk Storage Container>
- data_
sources Sequence[GetOvas V2Ova Vm Config Disk Backing Info Vm Disk Data Source] - disk_
ext_ strid - disk_
size_ intbytes - is_
migration_ boolin_ progress - storage_
configs Sequence[GetOvas V2Ova Vm Config Disk Backing Info Vm Disk Storage Config] - storage_
containers Sequence[GetOvas V2Ova Vm Config Disk Backing Info Vm Disk Storage Container]
GetOvasV2OvaVmConfigDiskBackingInfoVmDiskDataSource
GetOvasV2OvaVmConfigDiskBackingInfoVmDiskDataSourceReference
GetOvasV2OvaVmConfigDiskBackingInfoVmDiskDataSourceReferenceImageReference
- Image
Ext stringId
- Image
Ext stringId
- image_
ext_ stringid
- image
Ext StringId
- image
Ext stringId
- image_
ext_ strid
- image
Ext StringId
GetOvasV2OvaVmConfigDiskBackingInfoVmDiskDataSourceReferenceVmDiskReference
GetOvasV2OvaVmConfigDiskBackingInfoVmDiskDataSourceReferenceVmDiskReferenceDiskAddress
GetOvasV2OvaVmConfigDiskBackingInfoVmDiskDataSourceReferenceVmDiskReferenceVmReference
- Ext
Id string - A globally unique identifier of an instance that is suitable for external consumption.
- Ext
Id string - A globally unique identifier of an instance that is suitable for external consumption.
- ext_
id string - A globally unique identifier of an instance that is suitable for external consumption.
- ext
Id String - A globally unique identifier of an instance that is suitable for external consumption.
- ext
Id string - A globally unique identifier of an instance that is suitable for external consumption.
- ext_
id str - A globally unique identifier of an instance that is suitable for external consumption.
- ext
Id String - A globally unique identifier of an instance that is suitable for external consumption.
GetOvasV2OvaVmConfigDiskBackingInfoVmDiskStorageConfig
- Is
Flash boolMode Enabled
- Is
Flash boolMode Enabled
- is
Flash BooleanMode Enabled
- is
Flash booleanMode Enabled
- is
Flash BooleanMode Enabled
GetOvasV2OvaVmConfigDiskBackingInfoVmDiskStorageContainer
- Ext
Id string - A globally unique identifier of an instance that is suitable for external consumption.
- Ext
Id string - A globally unique identifier of an instance that is suitable for external consumption.
- ext_
id string - A globally unique identifier of an instance that is suitable for external consumption.
- ext
Id String - A globally unique identifier of an instance that is suitable for external consumption.
- ext
Id string - A globally unique identifier of an instance that is suitable for external consumption.
- ext_
id str - A globally unique identifier of an instance that is suitable for external consumption.
- ext
Id String - A globally unique identifier of an instance that is suitable for external consumption.
GetOvasV2OvaVmConfigDiskDiskAddress
GetOvasV2OvaVmConfigGpus
- Device
Id int - Ext
Id string - A globally unique identifier of an instance that is suitable for external consumption.
- Fraction int
- Frame
Buffer intSize Bytes - Guest
Driver stringVersion - Links
List<Piers
Karsenbarg. Nutanix. Inputs. Get Ovas V2Ova Vm Config Gpus Link> - A HATEOAS style link for the response. Each link contains a user-friendly name identifying the link and an address for retrieving the particular resource.
- Mode string
- Name string
- Name of the OVA.
- Num
Virtual intDisplay Heads - Pci
Addresses List<PiersKarsenbarg. Nutanix. Inputs. Get Ovas V2Ova Vm Config Gpus Pci Address> - Tenant
Id string - A globally unique identifier that represents the tenant that owns this entity. The system automatically assigns it, and it and is immutable from an API consumer perspective (some use cases may cause this Id to change - For instance, a use case may require the transfer of ownership of the entity, but these cases are handled automatically on the server).
- Vendor string
- Device
Id int - Ext
Id string - A globally unique identifier of an instance that is suitable for external consumption.
- Fraction int
- Frame
Buffer intSize Bytes - Guest
Driver stringVersion - Links
[]Get
Ovas V2Ova Vm Config Gpus Link - A HATEOAS style link for the response. Each link contains a user-friendly name identifying the link and an address for retrieving the particular resource.
- Mode string
- Name string
- Name of the OVA.
- Num
Virtual intDisplay Heads - Pci
Addresses []GetOvas V2Ova Vm Config Gpus Pci Address - Tenant
Id string - A globally unique identifier that represents the tenant that owns this entity. The system automatically assigns it, and it and is immutable from an API consumer perspective (some use cases may cause this Id to change - For instance, a use case may require the transfer of ownership of the entity, but these cases are handled automatically on the server).
- Vendor string
- device_
id number - ext_
id string - A globally unique identifier of an instance that is suitable for external consumption.
- fraction number
- frame_
buffer_ numbersize_ bytes - guest_
driver_ stringversion - links list(object)
- A HATEOAS style link for the response. Each link contains a user-friendly name identifying the link and an address for retrieving the particular resource.
- mode string
- name string
- Name of the OVA.
- num_
virtual_ numberdisplay_ heads - pci_
addresses list(object) - tenant_
id string - A globally unique identifier that represents the tenant that owns this entity. The system automatically assigns it, and it and is immutable from an API consumer perspective (some use cases may cause this Id to change - For instance, a use case may require the transfer of ownership of the entity, but these cases are handled automatically on the server).
- vendor string
- device
Id Integer - ext
Id String - A globally unique identifier of an instance that is suitable for external consumption.
- fraction Integer
- frame
Buffer IntegerSize Bytes - guest
Driver StringVersion - links
List<Get
Ovas V2Ova Vm Config Gpus Link> - A HATEOAS style link for the response. Each link contains a user-friendly name identifying the link and an address for retrieving the particular resource.
- mode String
- name String
- Name of the OVA.
- num
Virtual IntegerDisplay Heads - pci
Addresses List<GetOvas V2Ova Vm Config Gpus Pci Address> - tenant
Id String - A globally unique identifier that represents the tenant that owns this entity. The system automatically assigns it, and it and is immutable from an API consumer perspective (some use cases may cause this Id to change - For instance, a use case may require the transfer of ownership of the entity, but these cases are handled automatically on the server).
- vendor String
- device
Id number - ext
Id string - A globally unique identifier of an instance that is suitable for external consumption.
- fraction number
- frame
Buffer numberSize Bytes - guest
Driver stringVersion - links
Get
Ovas V2Ova Vm Config Gpus Link[] - A HATEOAS style link for the response. Each link contains a user-friendly name identifying the link and an address for retrieving the particular resource.
- mode string
- name string
- Name of the OVA.
- num
Virtual numberDisplay Heads - pci
Addresses GetOvas V2Ova Vm Config Gpus Pci Address[] - tenant
Id string - A globally unique identifier that represents the tenant that owns this entity. The system automatically assigns it, and it and is immutable from an API consumer perspective (some use cases may cause this Id to change - For instance, a use case may require the transfer of ownership of the entity, but these cases are handled automatically on the server).
- vendor string
- device_
id int - ext_
id str - A globally unique identifier of an instance that is suitable for external consumption.
- fraction int
- frame_
buffer_ intsize_ bytes - guest_
driver_ strversion - links
Sequence[Get
Ovas V2Ova Vm Config Gpus Link] - A HATEOAS style link for the response. Each link contains a user-friendly name identifying the link and an address for retrieving the particular resource.
- mode str
- name str
- Name of the OVA.
- num_
virtual_ intdisplay_ heads - pci_
addresses Sequence[GetOvas V2Ova Vm Config Gpus Pci Address] - tenant_
id str - A globally unique identifier that represents the tenant that owns this entity. The system automatically assigns it, and it and is immutable from an API consumer perspective (some use cases may cause this Id to change - For instance, a use case may require the transfer of ownership of the entity, but these cases are handled automatically on the server).
- vendor str
- device
Id Number - ext
Id String - A globally unique identifier of an instance that is suitable for external consumption.
- fraction Number
- frame
Buffer NumberSize Bytes - guest
Driver StringVersion - links List<Property Map>
- A HATEOAS style link for the response. Each link contains a user-friendly name identifying the link and an address for retrieving the particular resource.
- mode String
- name String
- Name of the OVA.
- num
Virtual NumberDisplay Heads - pci
Addresses List<Property Map> - tenant
Id String - A globally unique identifier that represents the tenant that owns this entity. The system automatically assigns it, and it and is immutable from an API consumer perspective (some use cases may cause this Id to change - For instance, a use case may require the transfer of ownership of the entity, but these cases are handled automatically on the server).
- vendor String
GetOvasV2OvaVmConfigGpusLink
GetOvasV2OvaVmConfigGpusPciAddress
GetOvasV2OvaVmConfigGuestCustomization
GetOvasV2OvaVmConfigGuestCustomizationConfig
GetOvasV2OvaVmConfigGuestCustomizationConfigCloudInit
- cloud_
init_ list(object)scripts - metadata string
- datasource_
type string
- cloud
Init List<Property Map>Scripts - metadata String
- datasource
Type String
GetOvasV2OvaVmConfigGuestCustomizationConfigCloudInitCloudInitScript
GetOvasV2OvaVmConfigGuestCustomizationConfigCloudInitCloudInitScriptCustomKeyValue
GetOvasV2OvaVmConfigGuestCustomizationConfigCloudInitCloudInitScriptCustomKeyValueKeyValuePair
- name string
- Name of the OVA.
- values list(object)
- name String
- Name of the OVA.
- values List<Property Map>
GetOvasV2OvaVmConfigGuestCustomizationConfigCloudInitCloudInitScriptCustomKeyValueKeyValuePairValue
- Boolean bool
- Integer int
- Integer
Lists List<int> - Map
Of List<PiersStrings Karsenbarg. Nutanix. Inputs. Get Ovas V2Ova Vm 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 []GetStrings Ovas V2Ova Vm 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<GetStrings Ovas V2Ova Vm 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 GetStrings Ovas V2Ova Vm 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[Getstrings Ovas V2Ova Vm 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>
GetOvasV2OvaVmConfigGuestCustomizationConfigCloudInitCloudInitScriptCustomKeyValueKeyValuePairValueMapOfString
- 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>
GetOvasV2OvaVmConfigGuestCustomizationConfigCloudInitCloudInitScriptUserData
- Value string
- Value string
- value string
- value String
- value string
- value str
- value String
GetOvasV2OvaVmConfigGuestCustomizationConfigSysprep
GetOvasV2OvaVmConfigGuestCustomizationConfigSysprepSysprepScript
GetOvasV2OvaVmConfigGuestCustomizationConfigSysprepSysprepScriptCustomKeyValue
GetOvasV2OvaVmConfigGuestCustomizationConfigSysprepSysprepScriptCustomKeyValueKeyValuePair
- name string
- Name of the OVA.
- values list(object)
- name String
- Name of the OVA.
- values List<Property Map>
GetOvasV2OvaVmConfigGuestCustomizationConfigSysprepSysprepScriptCustomKeyValueKeyValuePairValue
- Boolean bool
- Integer int
- Integer
Lists List<int> - Map
Of List<PiersStrings Karsenbarg. Nutanix. Inputs. Get Ovas V2Ova Vm 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 []GetStrings Ovas V2Ova Vm 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<GetStrings Ovas V2Ova Vm 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 GetStrings Ovas V2Ova Vm 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[Getstrings Ovas V2Ova Vm 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>
GetOvasV2OvaVmConfigGuestCustomizationConfigSysprepSysprepScriptCustomKeyValueKeyValuePairValueMapOfString
- 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>
GetOvasV2OvaVmConfigGuestCustomizationConfigSysprepSysprepScriptUnattendXml
- Value string
- Value string
- value string
- value String
- value string
- value str
- value String
GetOvasV2OvaVmConfigGuestTool
- Available
Version string - Capabilities List<string>
- Guest
Os stringVersion - Is
Enabled bool - Is
Installed bool - Is
Iso boolInserted - Is
Reachable bool - Is
Vm boolMobility Drivers Installed - Is
Vss boolSnapshot Capable - Version string
- Available
Version string - Capabilities []string
- Guest
Os stringVersion - Is
Enabled bool - Is
Installed bool - Is
Iso boolInserted - Is
Reachable bool - Is
Vm boolMobility Drivers Installed - Is
Vss boolSnapshot Capable - Version string
- available_
version string - capabilities list(string)
- guest_
os_ stringversion - is_
enabled bool - is_
installed bool - is_
iso_ boolinserted - is_
reachable bool - is_
vm_ boolmobility_ drivers_ installed - is_
vss_ boolsnapshot_ capable - version string
- available
Version String - capabilities List<String>
- guest
Os StringVersion - is
Enabled Boolean - is
Installed Boolean - is
Iso BooleanInserted - is
Reachable Boolean - is
Vm BooleanMobility Drivers Installed - is
Vss BooleanSnapshot Capable - version String
- available
Version string - capabilities string[]
- guest
Os stringVersion - is
Enabled boolean - is
Installed boolean - is
Iso booleanInserted - is
Reachable boolean - is
Vm booleanMobility Drivers Installed - is
Vss booleanSnapshot Capable - version string
- available_
version str - capabilities Sequence[str]
- guest_
os_ strversion - is_
enabled bool - is_
installed bool - is_
iso_ boolinserted - is_
reachable bool - is_
vm_ boolmobility_ drivers_ installed - is_
vss_ boolsnapshot_ capable - version str
- available
Version String - capabilities List<String>
- guest
Os StringVersion - is
Enabled Boolean - is
Installed Boolean - is
Iso BooleanInserted - is
Reachable Boolean - is
Vm BooleanMobility Drivers Installed - is
Vss BooleanSnapshot Capable - version String
GetOvasV2OvaVmConfigHost
- Ext
Id string - A globally unique identifier of an instance that is suitable for external consumption.
- Ext
Id string - A globally unique identifier of an instance that is suitable for external consumption.
- ext_
id string - A globally unique identifier of an instance that is suitable for external consumption.
- ext
Id String - A globally unique identifier of an instance that is suitable for external consumption.
- ext
Id string - A globally unique identifier of an instance that is suitable for external consumption.
- ext_
id str - A globally unique identifier of an instance that is suitable for external consumption.
- ext
Id String - A globally unique identifier of an instance that is suitable for external consumption.
GetOvasV2OvaVmConfigNic
- Backing
Infos List<PiersKarsenbarg. Nutanix. Inputs. Get Ovas V2Ova Vm Config Nic Backing Info> - Ext
Id string - A globally unique identifier of an instance that is suitable for external consumption.
- Network
Infos List<PiersKarsenbarg. Nutanix. Inputs. Get Ovas V2Ova Vm Config Nic Network Info> - Nic
Backing PiersInfo Karsenbarg. Nutanix. Inputs. Get Ovas V2Ova Vm Config Nic Nic Backing Info - Nic
Network PiersInfo Karsenbarg. Nutanix. Inputs. Get Ovas V2Ova Vm Config Nic Nic Network Info
- Backing
Infos []GetOvas V2Ova Vm Config Nic Backing Info - Ext
Id string - A globally unique identifier of an instance that is suitable for external consumption.
- Network
Infos []GetOvas V2Ova Vm Config Nic Network Info - Nic
Backing GetInfo Ovas V2Ova Vm Config Nic Nic Backing Info - Nic
Network GetInfo Ovas V2Ova Vm Config Nic Nic Network Info
- backing_
infos list(object) - ext_
id string - A globally unique identifier of an instance that is suitable for external consumption.
- network_
infos list(object) - nic_
backing_ objectinfo - nic_
network_ objectinfo
- backing
Infos List<GetOvas V2Ova Vm Config Nic Backing Info> - ext
Id String - A globally unique identifier of an instance that is suitable for external consumption.
- network
Infos List<GetOvas V2Ova Vm Config Nic Network Info> - nic
Backing GetInfo Ovas V2Ova Vm Config Nic Nic Backing Info - nic
Network GetInfo Ovas V2Ova Vm Config Nic Nic Network Info
- backing
Infos GetOvas V2Ova Vm Config Nic Backing Info[] - ext
Id string - A globally unique identifier of an instance that is suitable for external consumption.
- network
Infos GetOvas V2Ova Vm Config Nic Network Info[] - nic
Backing GetInfo Ovas V2Ova Vm Config Nic Nic Backing Info - nic
Network GetInfo Ovas V2Ova Vm Config Nic Nic Network Info
- backing_
infos Sequence[GetOvas V2Ova Vm Config Nic Backing Info] - ext_
id str - A globally unique identifier of an instance that is suitable for external consumption.
- network_
infos Sequence[GetOvas V2Ova Vm Config Nic Network Info] - nic_
backing_ Getinfo Ovas V2Ova Vm Config Nic Nic Backing Info - nic_
network_ Getinfo Ovas V2Ova Vm Config Nic Nic Network Info
- backing
Infos List<Property Map> - ext
Id String - A globally unique identifier of an instance that is suitable for external consumption.
- network
Infos List<Property Map> - nic
Backing Property MapInfo - nic
Network Property MapInfo
GetOvasV2OvaVmConfigNicBackingInfo
- Is
Connected bool - Mac
Address string - Model string
- Num
Queues int
- Is
Connected bool - Mac
Address string - Model string
- Num
Queues int
- is_
connected bool - mac_
address string - model string
- num_
queues number
- is
Connected Boolean - mac
Address String - model String
- num
Queues Integer
- is
Connected boolean - mac
Address string - model string
- num
Queues number
- is_
connected bool - mac_
address str - model str
- num_
queues int
- is
Connected Boolean - mac
Address String - model String
- num
Queues Number
GetOvasV2OvaVmConfigNicNetworkInfo
- Ipv4Configs
List<Piers
Karsenbarg. Nutanix. Inputs. Get Ovas V2Ova Vm Config Nic Network Info Ipv4Config> - Ipv4Infos
List<Piers
Karsenbarg. Nutanix. Inputs. Get Ovas V2Ova Vm Config Nic Network Info Ipv4Info> - Network
Function List<PiersChains Karsenbarg. Nutanix. Inputs. Get Ovas V2Ova Vm Config Nic Network Info Network Function Chain> - Network
Function stringNic Type - Nic
Type string - Should
Allow boolUnknown Macs - Subnets
List<Piers
Karsenbarg. Nutanix. Inputs. Get Ovas V2Ova Vm Config Nic Network Info Subnet> - Trunked
Vlans List<int> - Vlan
Mode string
- Ipv4Configs
[]Get
Ovas V2Ova Vm Config Nic Network Info Ipv4Config - Ipv4Infos
[]Get
Ovas V2Ova Vm Config Nic Network Info Ipv4Info - Network
Function []GetChains Ovas V2Ova Vm Config Nic Network Info Network Function Chain - Network
Function stringNic Type - Nic
Type string - Should
Allow boolUnknown Macs - Subnets
[]Get
Ovas V2Ova Vm Config Nic Network Info Subnet - Trunked
Vlans []int - Vlan
Mode string
- ipv4Configs
List<Get
Ovas V2Ova Vm Config Nic Network Info Ipv4Config> - ipv4Infos
List<Get
Ovas V2Ova Vm Config Nic Network Info Ipv4Info> - network
Function List<GetChains Ovas V2Ova Vm Config Nic Network Info Network Function Chain> - network
Function StringNic Type - nic
Type String - should
Allow BooleanUnknown Macs - subnets
List<Get
Ovas V2Ova Vm Config Nic Network Info Subnet> - trunked
Vlans List<Integer> - vlan
Mode String
- ipv4Configs
Get
Ovas V2Ova Vm Config Nic Network Info Ipv4Config[] - ipv4Infos
Get
Ovas V2Ova Vm Config Nic Network Info Ipv4Info[] - network
Function GetChains Ovas V2Ova Vm Config Nic Network Info Network Function Chain[] - network
Function stringNic Type - nic
Type string - should
Allow booleanUnknown Macs - subnets
Get
Ovas V2Ova Vm Config Nic Network Info Subnet[] - trunked
Vlans number[] - vlan
Mode string
- ipv4_
configs Sequence[GetOvas V2Ova Vm Config Nic Network Info Ipv4Config] - ipv4_
infos Sequence[GetOvas V2Ova Vm Config Nic Network Info Ipv4Info] - network_
function_ Sequence[Getchains Ovas V2Ova Vm Config Nic Network Info Network Function Chain] - network_
function_ strnic_ type - nic_
type str - should_
allow_ boolunknown_ macs - subnets
Sequence[Get
Ovas V2Ova Vm Config Nic Network Info Subnet] - trunked_
vlans Sequence[int] - vlan_
mode str
GetOvasV2OvaVmConfigNicNetworkInfoIpv4Config
GetOvasV2OvaVmConfigNicNetworkInfoIpv4ConfigIpAddress
- Value string
- Prefix
Length int
- Value string
- Prefix
Length int
- value string
- prefix_
length number
- value String
- prefix
Length Integer
- value string
- prefix
Length number
- value str
- prefix_
length int
- value String
- prefix
Length Number
GetOvasV2OvaVmConfigNicNetworkInfoIpv4ConfigSecondaryIpAddressList
- Value string
- Prefix
Length int
- Value string
- Prefix
Length int
- value string
- prefix_
length number
- value String
- prefix
Length Integer
- value string
- prefix
Length number
- value str
- prefix_
length int
- value String
- prefix
Length Number
GetOvasV2OvaVmConfigNicNetworkInfoIpv4Info
GetOvasV2OvaVmConfigNicNetworkInfoIpv4InfoLearnedIpAddress
- Value string
- Prefix
Length int
- Value string
- Prefix
Length int
- value string
- prefix_
length number
- value String
- prefix
Length Integer
- value string
- prefix
Length number
- value str
- prefix_
length int
- value String
- prefix
Length Number
GetOvasV2OvaVmConfigNicNetworkInfoNetworkFunctionChain
- Ext
Id string - A globally unique identifier of an instance that is suitable for external consumption.
- Ext
Id string - A globally unique identifier of an instance that is suitable for external consumption.
- ext_
id string - A globally unique identifier of an instance that is suitable for external consumption.
- ext
Id String - A globally unique identifier of an instance that is suitable for external consumption.
- ext
Id string - A globally unique identifier of an instance that is suitable for external consumption.
- ext_
id str - A globally unique identifier of an instance that is suitable for external consumption.
- ext
Id String - A globally unique identifier of an instance that is suitable for external consumption.
GetOvasV2OvaVmConfigNicNetworkInfoSubnet
- Ext
Id string - A globally unique identifier of an instance that is suitable for external consumption.
- Ext
Id string - A globally unique identifier of an instance that is suitable for external consumption.
- ext_
id string - A globally unique identifier of an instance that is suitable for external consumption.
- ext
Id String - A globally unique identifier of an instance that is suitable for external consumption.
- ext
Id string - A globally unique identifier of an instance that is suitable for external consumption.
- ext_
id str - A globally unique identifier of an instance that is suitable for external consumption.
- ext
Id String - A globally unique identifier of an instance that is suitable for external consumption.
GetOvasV2OvaVmConfigNicNicBackingInfo
GetOvasV2OvaVmConfigNicNicBackingInfoDpOffloadNic
GetOvasV2OvaVmConfigNicNicBackingInfoDpOffloadNicDpOffloadProfileReference
- Ext
Id string - A globally unique identifier of an instance that is suitable for external consumption.
- Ext
Id string - A globally unique identifier of an instance that is suitable for external consumption.
- ext_
id string - A globally unique identifier of an instance that is suitable for external consumption.
- ext
Id String - A globally unique identifier of an instance that is suitable for external consumption.
- ext
Id string - A globally unique identifier of an instance that is suitable for external consumption.
- ext_
id str - A globally unique identifier of an instance that is suitable for external consumption.
- ext
Id String - A globally unique identifier of an instance that is suitable for external consumption.
GetOvasV2OvaVmConfigNicNicBackingInfoDpOffloadNicHostPcieDeviceReference
- Ext
Id string - A globally unique identifier of an instance that is suitable for external consumption.
- Ext
Id string - A globally unique identifier of an instance that is suitable for external consumption.
- ext_
id string - A globally unique identifier of an instance that is suitable for external consumption.
- ext
Id String - A globally unique identifier of an instance that is suitable for external consumption.
- ext
Id string - A globally unique identifier of an instance that is suitable for external consumption.
- ext_
id str - A globally unique identifier of an instance that is suitable for external consumption.
- ext
Id String - A globally unique identifier of an instance that is suitable for external consumption.
GetOvasV2OvaVmConfigNicNicBackingInfoSriovNic
GetOvasV2OvaVmConfigNicNicBackingInfoSriovNicHostPcieDeviceReference
- Ext
Id string - A globally unique identifier of an instance that is suitable for external consumption.
- Ext
Id string - A globally unique identifier of an instance that is suitable for external consumption.
- ext_
id string - A globally unique identifier of an instance that is suitable for external consumption.
- ext
Id String - A globally unique identifier of an instance that is suitable for external consumption.
- ext
Id string - A globally unique identifier of an instance that is suitable for external consumption.
- ext_
id str - A globally unique identifier of an instance that is suitable for external consumption.
- ext
Id String - A globally unique identifier of an instance that is suitable for external consumption.
GetOvasV2OvaVmConfigNicNicBackingInfoSriovNicSriovProfileReference
- Ext
Id string - A globally unique identifier of an instance that is suitable for external consumption.
- Ext
Id string - A globally unique identifier of an instance that is suitable for external consumption.
- ext_
id string - A globally unique identifier of an instance that is suitable for external consumption.
- ext
Id String - A globally unique identifier of an instance that is suitable for external consumption.
- ext
Id string - A globally unique identifier of an instance that is suitable for external consumption.
- ext_
id str - A globally unique identifier of an instance that is suitable for external consumption.
- ext
Id String - A globally unique identifier of an instance that is suitable for external consumption.
GetOvasV2OvaVmConfigNicNicBackingInfoVirtualEthernetNic
- Is
Connected bool - Mac
Address string - Model string
- Num
Queues int
- Is
Connected bool - Mac
Address string - Model string
- Num
Queues int
- is_
connected bool - mac_
address string - model string
- num_
queues number
- is
Connected Boolean - mac
Address String - model String
- num
Queues Integer
- is
Connected boolean - mac
Address string - model string
- num
Queues number
- is_
connected bool - mac_
address str - model str
- num_
queues int
- is
Connected Boolean - mac
Address String - model String
- num
Queues Number
GetOvasV2OvaVmConfigNicNicNetworkInfo
- Dp
Offload PiersNic Network Info Karsenbarg. Nutanix. Inputs. Get Ovas V2Ova Vm Config Nic Nic Network Info Dp Offload Nic Network Info - Sriov
Nic PiersNetwork Info Karsenbarg. Nutanix. Inputs. Get Ovas V2Ova Vm Config Nic Nic Network Info Sriov Nic Network Info - Virtual
Ethernet PiersNic Network Info Karsenbarg. Nutanix. Inputs. Get Ovas V2Ova Vm Config Nic Nic Network Info Virtual Ethernet Nic Network Info
GetOvasV2OvaVmConfigNicNicNetworkInfoDpOffloadNicNetworkInfo
- Ipv4Configs
List<Piers
Karsenbarg. Nutanix. Inputs. Get Ovas V2Ova Vm Config Nic Nic Network Info Dp Offload Nic Network Info Ipv4Config> - Ipv4Infos
List<Piers
Karsenbarg. Nutanix. Inputs. Get Ovas V2Ova Vm Config Nic Nic Network Info Dp Offload Nic Network Info Ipv4Info> - Ipv6Infos
List<Piers
Karsenbarg. Nutanix. Inputs. Get Ovas V2Ova Vm Config Nic Nic Network Info Dp Offload Nic Network Info Ipv6Info> - Should
Allow boolUnknown Macs - Subnets
List<Piers
Karsenbarg. Nutanix. Inputs. Get Ovas V2Ova Vm Config Nic Nic Network Info Dp Offload Nic Network Info Subnet> - Trunked
Vlans List<int> - Vlan
Mode string
- Ipv4Configs
[]Get
Ovas V2Ova Vm Config Nic Nic Network Info Dp Offload Nic Network Info Ipv4Config - Ipv4Infos
[]Get
Ovas V2Ova Vm Config Nic Nic Network Info Dp Offload Nic Network Info Ipv4Info - Ipv6Infos
[]Get
Ovas V2Ova Vm Config Nic Nic Network Info Dp Offload Nic Network Info Ipv6Info - Should
Allow boolUnknown Macs - Subnets
[]Get
Ovas V2Ova Vm Config Nic Nic Network Info Dp Offload Nic Network Info Subnet - Trunked
Vlans []int - Vlan
Mode string
- ipv4Configs
List<Get
Ovas V2Ova Vm Config Nic Nic Network Info Dp Offload Nic Network Info Ipv4Config> - ipv4Infos
List<Get
Ovas V2Ova Vm Config Nic Nic Network Info Dp Offload Nic Network Info Ipv4Info> - ipv6Infos
List<Get
Ovas V2Ova Vm Config Nic Nic Network Info Dp Offload Nic Network Info Ipv6Info> - should
Allow BooleanUnknown Macs - subnets
List<Get
Ovas V2Ova Vm Config Nic Nic Network Info Dp Offload Nic Network Info Subnet> - trunked
Vlans List<Integer> - vlan
Mode String
- ipv4Configs
Get
Ovas V2Ova Vm Config Nic Nic Network Info Dp Offload Nic Network Info Ipv4Config[] - ipv4Infos
Get
Ovas V2Ova Vm Config Nic Nic Network Info Dp Offload Nic Network Info Ipv4Info[] - ipv6Infos
Get
Ovas V2Ova Vm Config Nic Nic Network Info Dp Offload Nic Network Info Ipv6Info[] - should
Allow booleanUnknown Macs - subnets
Get
Ovas V2Ova Vm Config Nic Nic Network Info Dp Offload Nic Network Info Subnet[] - trunked
Vlans number[] - vlan
Mode string
- ipv4_
configs Sequence[GetOvas V2Ova Vm Config Nic Nic Network Info Dp Offload Nic Network Info Ipv4Config] - ipv4_
infos Sequence[GetOvas V2Ova Vm Config Nic Nic Network Info Dp Offload Nic Network Info Ipv4Info] - ipv6_
infos Sequence[GetOvas V2Ova Vm Config Nic Nic Network Info Dp Offload Nic Network Info Ipv6Info] - should_
allow_ boolunknown_ macs - subnets
Sequence[Get
Ovas V2Ova Vm Config Nic Nic Network Info Dp Offload Nic Network Info Subnet] - trunked_
vlans Sequence[int] - vlan_
mode str
GetOvasV2OvaVmConfigNicNicNetworkInfoDpOffloadNicNetworkInfoIpv4Config
- Ip
Addresses List<PiersKarsenbarg. Nutanix. Inputs. Get Ovas V2Ova Vm Config Nic Nic Network Info Dp Offload Nic Network Info Ipv4Config Ip Address> - Secondary
Ip List<PiersAddress Lists Karsenbarg. Nutanix. Inputs. Get Ovas V2Ova Vm Config Nic Nic Network Info Dp Offload Nic Network Info Ipv4Config Secondary Ip Address List> - Should
Assign boolIp
GetOvasV2OvaVmConfigNicNicNetworkInfoDpOffloadNicNetworkInfoIpv4ConfigIpAddress
- Value string
- Prefix
Length int
- Value string
- Prefix
Length int
- value string
- prefix_
length number
- value String
- prefix
Length Integer
- value string
- prefix
Length number
- value str
- prefix_
length int
- value String
- prefix
Length Number
GetOvasV2OvaVmConfigNicNicNetworkInfoDpOffloadNicNetworkInfoIpv4ConfigSecondaryIpAddressList
- Value string
- Prefix
Length int
- Value string
- Prefix
Length int
- value string
- prefix_
length number
- value String
- prefix
Length Integer
- value string
- prefix
Length number
- value str
- prefix_
length int
- value String
- prefix
Length Number
GetOvasV2OvaVmConfigNicNicNetworkInfoDpOffloadNicNetworkInfoIpv4Info
GetOvasV2OvaVmConfigNicNicNetworkInfoDpOffloadNicNetworkInfoIpv4InfoLearnedIpAddress
- Value string
- Prefix
Length int
- Value string
- Prefix
Length int
- value string
- prefix_
length number
- value String
- prefix
Length Integer
- value string
- prefix
Length number
- value str
- prefix_
length int
- value String
- prefix
Length Number
GetOvasV2OvaVmConfigNicNicNetworkInfoDpOffloadNicNetworkInfoIpv6Info
GetOvasV2OvaVmConfigNicNicNetworkInfoDpOffloadNicNetworkInfoIpv6InfoLearnedIpv6Address
- Value string
- Prefix
Length int
- Value string
- Prefix
Length int
- value string
- prefix_
length number
- value String
- prefix
Length Integer
- value string
- prefix
Length number
- value str
- prefix_
length int
- value String
- prefix
Length Number
GetOvasV2OvaVmConfigNicNicNetworkInfoDpOffloadNicNetworkInfoSubnet
- Ext
Id string - A globally unique identifier of an instance that is suitable for external consumption.
- Ext
Id string - A globally unique identifier of an instance that is suitable for external consumption.
- ext_
id string - A globally unique identifier of an instance that is suitable for external consumption.
- ext
Id String - A globally unique identifier of an instance that is suitable for external consumption.
- ext
Id string - A globally unique identifier of an instance that is suitable for external consumption.
- ext_
id str - A globally unique identifier of an instance that is suitable for external consumption.
- ext
Id String - A globally unique identifier of an instance that is suitable for external consumption.
GetOvasV2OvaVmConfigNicNicNetworkInfoSriovNicNetworkInfo
- Vlan
Id int
- Vlan
Id int
- vlan_
id number
- vlan
Id Integer
- vlan
Id number
- vlan_
id int
- vlan
Id Number
GetOvasV2OvaVmConfigNicNicNetworkInfoVirtualEthernetNicNetworkInfo
- Ipv4Configs
List<Piers
Karsenbarg. Nutanix. Inputs. Get Ovas V2Ova Vm Config Nic Nic Network Info Virtual Ethernet Nic Network Info Ipv4Config> - Ipv4Infos
List<Piers
Karsenbarg. Nutanix. Inputs. Get Ovas V2Ova Vm Config Nic Nic Network Info Virtual Ethernet Nic Network Info Ipv4Info> - Ipv6Infos
List<Piers
Karsenbarg. Nutanix. Inputs. Get Ovas V2Ova Vm Config Nic Nic Network Info Virtual Ethernet Nic Network Info Ipv6Info> - Network
Function List<PiersChains Karsenbarg. Nutanix. Inputs. Get Ovas V2Ova Vm Config Nic Nic Network Info Virtual Ethernet Nic Network Info Network Function Chain> - Network
Function stringNic Type - Nic
Type string - Should
Allow boolUnknown Macs - Subnets
List<Piers
Karsenbarg. Nutanix. Inputs. Get Ovas V2Ova Vm Config Nic Nic Network Info Virtual Ethernet Nic Network Info Subnet> - Trunked
Vlans List<int> - Vlan
Mode string
- Ipv4Configs
[]Get
Ovas V2Ova Vm Config Nic Nic Network Info Virtual Ethernet Nic Network Info Ipv4Config - Ipv4Infos
[]Get
Ovas V2Ova Vm Config Nic Nic Network Info Virtual Ethernet Nic Network Info Ipv4Info - Ipv6Infos
[]Get
Ovas V2Ova Vm Config Nic Nic Network Info Virtual Ethernet Nic Network Info Ipv6Info - Network
Function []GetChains Ovas V2Ova Vm Config Nic Nic Network Info Virtual Ethernet Nic Network Info Network Function Chain - Network
Function stringNic Type - Nic
Type string - Should
Allow boolUnknown Macs - Subnets
[]Get
Ovas V2Ova Vm Config Nic Nic Network Info Virtual Ethernet Nic Network Info Subnet - Trunked
Vlans []int - Vlan
Mode string
- ipv4Configs
List<Get
Ovas V2Ova Vm Config Nic Nic Network Info Virtual Ethernet Nic Network Info Ipv4Config> - ipv4Infos
List<Get
Ovas V2Ova Vm Config Nic Nic Network Info Virtual Ethernet Nic Network Info Ipv4Info> - ipv6Infos
List<Get
Ovas V2Ova Vm Config Nic Nic Network Info Virtual Ethernet Nic Network Info Ipv6Info> - network
Function List<GetChains Ovas V2Ova Vm Config Nic Nic Network Info Virtual Ethernet Nic Network Info Network Function Chain> - network
Function StringNic Type - nic
Type String - should
Allow BooleanUnknown Macs - subnets
List<Get
Ovas V2Ova Vm Config Nic Nic Network Info Virtual Ethernet Nic Network Info Subnet> - trunked
Vlans List<Integer> - vlan
Mode String
- ipv4Configs
Get
Ovas V2Ova Vm Config Nic Nic Network Info Virtual Ethernet Nic Network Info Ipv4Config[] - ipv4Infos
Get
Ovas V2Ova Vm Config Nic Nic Network Info Virtual Ethernet Nic Network Info Ipv4Info[] - ipv6Infos
Get
Ovas V2Ova Vm Config Nic Nic Network Info Virtual Ethernet Nic Network Info Ipv6Info[] - network
Function GetChains Ovas V2Ova Vm Config Nic Nic Network Info Virtual Ethernet Nic Network Info Network Function Chain[] - network
Function stringNic Type - nic
Type string - should
Allow booleanUnknown Macs - subnets
Get
Ovas V2Ova Vm Config Nic Nic Network Info Virtual Ethernet Nic Network Info Subnet[] - trunked
Vlans number[] - vlan
Mode string
- ipv4_
configs Sequence[GetOvas V2Ova Vm Config Nic Nic Network Info Virtual Ethernet Nic Network Info Ipv4Config] - ipv4_
infos Sequence[GetOvas V2Ova Vm Config Nic Nic Network Info Virtual Ethernet Nic Network Info Ipv4Info] - ipv6_
infos Sequence[GetOvas V2Ova Vm Config Nic Nic Network Info Virtual Ethernet Nic Network Info Ipv6Info] - network_
function_ Sequence[Getchains Ovas V2Ova Vm Config Nic Nic Network Info Virtual Ethernet Nic Network Info Network Function Chain] - network_
function_ strnic_ type - nic_
type str - should_
allow_ boolunknown_ macs - subnets
Sequence[Get
Ovas V2Ova Vm Config Nic Nic Network Info Virtual Ethernet Nic Network Info Subnet] - trunked_
vlans Sequence[int] - vlan_
mode str
GetOvasV2OvaVmConfigNicNicNetworkInfoVirtualEthernetNicNetworkInfoIpv4Config
- Ip
Addresses List<PiersKarsenbarg. Nutanix. Inputs. Get Ovas V2Ova Vm Config Nic Nic Network Info Virtual Ethernet Nic Network Info Ipv4Config Ip Address> - Secondary
Ip List<PiersAddress Lists Karsenbarg. Nutanix. Inputs. Get Ovas V2Ova Vm Config Nic Nic Network Info Virtual Ethernet Nic Network Info Ipv4Config Secondary Ip Address List> - Should
Assign boolIp
GetOvasV2OvaVmConfigNicNicNetworkInfoVirtualEthernetNicNetworkInfoIpv4ConfigIpAddress
- Value string
- Prefix
Length int
- Value string
- Prefix
Length int
- value string
- prefix_
length number
- value String
- prefix
Length Integer
- value string
- prefix
Length number
- value str
- prefix_
length int
- value String
- prefix
Length Number
GetOvasV2OvaVmConfigNicNicNetworkInfoVirtualEthernetNicNetworkInfoIpv4ConfigSecondaryIpAddressList
- Value string
- Prefix
Length int
- Value string
- Prefix
Length int
- value string
- prefix_
length number
- value String
- prefix
Length Integer
- value string
- prefix
Length number
- value str
- prefix_
length int
- value String
- prefix
Length Number
GetOvasV2OvaVmConfigNicNicNetworkInfoVirtualEthernetNicNetworkInfoIpv4Info
GetOvasV2OvaVmConfigNicNicNetworkInfoVirtualEthernetNicNetworkInfoIpv4InfoLearnedIpAddress
- Value string
- Prefix
Length int
- Value string
- Prefix
Length int
- value string
- prefix_
length number
- value String
- prefix
Length Integer
- value string
- prefix
Length number
- value str
- prefix_
length int
- value String
- prefix
Length Number
GetOvasV2OvaVmConfigNicNicNetworkInfoVirtualEthernetNicNetworkInfoIpv6Info
GetOvasV2OvaVmConfigNicNicNetworkInfoVirtualEthernetNicNetworkInfoIpv6InfoLearnedIpv6Address
- Value string
- Prefix
Length int
- Value string
- Prefix
Length int
- value string
- prefix_
length number
- value String
- prefix
Length Integer
- value string
- prefix
Length number
- value str
- prefix_
length int
- value String
- prefix
Length Number
GetOvasV2OvaVmConfigNicNicNetworkInfoVirtualEthernetNicNetworkInfoNetworkFunctionChain
- Ext
Id string - A globally unique identifier of an instance that is suitable for external consumption.
- Ext
Id string - A globally unique identifier of an instance that is suitable for external consumption.
- ext_
id string - A globally unique identifier of an instance that is suitable for external consumption.
- ext
Id String - A globally unique identifier of an instance that is suitable for external consumption.
- ext
Id string - A globally unique identifier of an instance that is suitable for external consumption.
- ext_
id str - A globally unique identifier of an instance that is suitable for external consumption.
- ext
Id String - A globally unique identifier of an instance that is suitable for external consumption.
GetOvasV2OvaVmConfigNicNicNetworkInfoVirtualEthernetNicNetworkInfoSubnet
- Ext
Id string - A globally unique identifier of an instance that is suitable for external consumption.
- Ext
Id string - A globally unique identifier of an instance that is suitable for external consumption.
- ext_
id string - A globally unique identifier of an instance that is suitable for external consumption.
- ext
Id String - A globally unique identifier of an instance that is suitable for external consumption.
- ext
Id string - A globally unique identifier of an instance that is suitable for external consumption.
- ext_
id str - A globally unique identifier of an instance that is suitable for external consumption.
- ext
Id String - A globally unique identifier of an instance that is suitable for external consumption.
GetOvasV2OvaVmConfigOwnershipInfo
GetOvasV2OvaVmConfigOwnershipInfoOwner
- Ext
Id string - A globally unique identifier of an instance that is suitable for external consumption.
- Ext
Id string - A globally unique identifier of an instance that is suitable for external consumption.
- ext_
id string - A globally unique identifier of an instance that is suitable for external consumption.
- ext
Id String - A globally unique identifier of an instance that is suitable for external consumption.
- ext
Id string - A globally unique identifier of an instance that is suitable for external consumption.
- ext_
id str - A globally unique identifier of an instance that is suitable for external consumption.
- ext
Id String - A globally unique identifier of an instance that is suitable for external consumption.
GetOvasV2OvaVmConfigProject
- Ext
Id string - A globally unique identifier of an instance that is suitable for external consumption.
- Ext
Id string - A globally unique identifier of an instance that is suitable for external consumption.
- ext_
id string - A globally unique identifier of an instance that is suitable for external consumption.
- ext
Id String - A globally unique identifier of an instance that is suitable for external consumption.
- ext
Id string - A globally unique identifier of an instance that is suitable for external consumption.
- ext_
id str - A globally unique identifier of an instance that is suitable for external consumption.
- ext
Id String - A globally unique identifier of an instance that is suitable for external consumption.
GetOvasV2OvaVmConfigProtectionPolicyState
GetOvasV2OvaVmConfigProtectionPolicyStatePolicy
- Ext
Id string - A globally unique identifier of an instance that is suitable for external consumption.
- Ext
Id string - A globally unique identifier of an instance that is suitable for external consumption.
- ext_
id string - A globally unique identifier of an instance that is suitable for external consumption.
- ext
Id String - A globally unique identifier of an instance that is suitable for external consumption.
- ext
Id string - A globally unique identifier of an instance that is suitable for external consumption.
- ext_
id str - A globally unique identifier of an instance that is suitable for external consumption.
- ext
Id String - A globally unique identifier of an instance that is suitable for external consumption.
GetOvasV2OvaVmConfigSerialPort
- Ext
Id string - A globally unique identifier of an instance that is suitable for external consumption.
- Index int
- Is
Connected bool
- Ext
Id string - A globally unique identifier of an instance that is suitable for external consumption.
- Index int
- Is
Connected bool
- ext_
id string - A globally unique identifier of an instance that is suitable for external consumption.
- index number
- is_
connected bool
- ext
Id String - A globally unique identifier of an instance that is suitable for external consumption.
- index Integer
- is
Connected Boolean
- ext
Id string - A globally unique identifier of an instance that is suitable for external consumption.
- index number
- is
Connected boolean
- ext_
id str - A globally unique identifier of an instance that is suitable for external consumption.
- index int
- is_
connected bool
- ext
Id String - A globally unique identifier of an instance that is suitable for external consumption.
- index Number
- is
Connected Boolean
GetOvasV2OvaVmConfigSource
- Entity
Type string - Ext
Id string - A globally unique identifier of an instance that is suitable for external consumption.
- Entity
Type string - Ext
Id string - A globally unique identifier of an instance that is suitable for external consumption.
- entity_
type string - ext_
id string - A globally unique identifier of an instance that is suitable for external consumption.
- entity
Type String - ext
Id String - A globally unique identifier of an instance that is suitable for external consumption.
- entity
Type string - ext
Id string - A globally unique identifier of an instance that is suitable for external consumption.
- entity_
type str - ext_
id str - A globally unique identifier of an instance that is suitable for external consumption.
- entity
Type String - ext
Id String - A globally unique identifier of an instance that is suitable for external consumption.
GetOvasV2OvaVmConfigStorageConfig
GetOvasV2OvaVmConfigStorageConfigQosConfig
- Throttled
Iops int
- Throttled
Iops int
- throttled_
iops number
- throttled
Iops Integer
- throttled
Iops number
- throttled_
iops int
- throttled
Iops Number
GetOvasV2OvaVmConfigVtpmConfig
- Is
Vtpm boolEnabled - Version string
- Is
Vtpm boolEnabled - Version string
- is_
vtpm_ boolenabled - version string
- is
Vtpm BooleanEnabled - version String
- is
Vtpm booleanEnabled - version string
- is_
vtpm_ boolenabled - version str
- is
Vtpm BooleanEnabled - version String
Package Details
- Repository
- nutanix pierskarsenbarg/pulumi-nutanix
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
nutanixTerraform Provider.
Viewing docs for Nutanix v0.16.0
published on Tuesday, May 26, 2026 by Piers Karsenbarg
published on Tuesday, May 26, 2026 by Piers Karsenbarg