import * as pulumi from "@pulumi/pulumi"; import * as inputs from "./types/input"; import * as outputs from "./types/output"; /** * Creates an OVA using the provided request body. The name and source are mandatory fields to create an OVA. */ export declare class OvaV2 extends pulumi.CustomResource { /** * Get an existing OvaV2 resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param state Any extra arguments used during the lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, state?: OvaV2State, opts?: pulumi.CustomResourceOptions): OvaV2; /** * Returns true if the given object is an instance of OvaV2. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is OvaV2; /** * -(Optional) The checksum of an OVA. */ readonly checksum: pulumi.Output; /** * -(Optional) List of cluster identifiers where the OVA is located. This field is required when creating an OVA from URL or Objects lite upload. its `mandatory` when creating an OVA from URL or object lite source . */ readonly clusterLocationExtIds: pulumi.Output; readonly createTime: pulumi.Output; /** * -(Optional) Information of the user. */ readonly createdBies: pulumi.Output; /** * -(Optional) Disk format of an OVA. * |ENUM |Description | * |---|---| * | VMDK | The VMDK disk format of an OVA. | * | QCOW2 | The QCOW2 disk format of an OVA. | */ readonly diskFormat: pulumi.Output; readonly extId: pulumi.Output; readonly lastUpdateTime: pulumi.Output; readonly links: pulumi.Output; /** * -(Required) Name of the OVA. */ readonly name: pulumi.Output; readonly parentVm: pulumi.Output; readonly sizeBytes: pulumi.Output; /** * -(Required) Source of the created OVA file. The source can either be a VM, URL, or a local upload. */ readonly sources: pulumi.Output; readonly tenantId: pulumi.Output; /** * -(Optional) VM configuration. */ readonly vmConfigs: pulumi.Output; /** * Create a OvaV2 resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args: OvaV2Args, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering OvaV2 resources. */ export interface OvaV2State { /** * -(Optional) The checksum of an OVA. */ checksum?: pulumi.Input; /** * -(Optional) List of cluster identifiers where the OVA is located. This field is required when creating an OVA from URL or Objects lite upload. its `mandatory` when creating an OVA from URL or object lite source . */ clusterLocationExtIds?: pulumi.Input[] | undefined>; createTime?: pulumi.Input; /** * -(Optional) Information of the user. */ createdBies?: pulumi.Input[] | undefined>; /** * -(Optional) Disk format of an OVA. * |ENUM |Description | * |---|---| * | VMDK | The VMDK disk format of an OVA. | * | QCOW2 | The QCOW2 disk format of an OVA. | */ diskFormat?: pulumi.Input; extId?: pulumi.Input; lastUpdateTime?: pulumi.Input; links?: pulumi.Input[] | undefined>; /** * -(Required) Name of the OVA. */ name?: pulumi.Input; parentVm?: pulumi.Input; sizeBytes?: pulumi.Input; /** * -(Required) Source of the created OVA file. The source can either be a VM, URL, or a local upload. */ sources?: pulumi.Input[] | undefined>; tenantId?: pulumi.Input; /** * -(Optional) VM configuration. */ vmConfigs?: pulumi.Input[] | undefined>; } /** * The set of arguments for constructing a OvaV2 resource. */ export interface OvaV2Args { /** * -(Optional) The checksum of an OVA. */ checksum?: pulumi.Input; /** * -(Optional) List of cluster identifiers where the OVA is located. This field is required when creating an OVA from URL or Objects lite upload. its `mandatory` when creating an OVA from URL or object lite source . */ clusterLocationExtIds?: pulumi.Input[] | undefined>; /** * -(Optional) Disk format of an OVA. * |ENUM |Description | * |---|---| * | VMDK | The VMDK disk format of an OVA. | * | QCOW2 | The QCOW2 disk format of an OVA. | */ diskFormat?: pulumi.Input; /** * -(Required) Name of the OVA. */ name?: pulumi.Input; /** * -(Required) Source of the created OVA file. The source can either be a VM, URL, or a local upload. */ sources: pulumi.Input[]>; } //# sourceMappingURL=ovaV2.d.ts.map