import * as pulumi from "@pulumi/pulumi"; import * as inputs from "./types/input"; import * as outputs from "./types/output"; /** * !> **DO NOT USE** * This is an experimental implementation of a Proxmox VM datasource using Plugin Framework. */ export declare function getVm2(args: GetVm2Args, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getVm2. */ export interface GetVm2Args { /** * The cloning configuration. */ clone?: inputs.GetVm2Clone; /** * The CPU configuration. */ cpu?: inputs.GetVm2Cpu; /** * The description of the VM. */ description?: string; /** * The unique identifier of the VM in the Proxmox cluster. */ id: number; /** * The name of the VM. */ name?: string; /** * The name of the node where the VM is provisioned. */ nodeName: string; /** * The RNG (Random Number Generator) configuration. */ rng?: inputs.GetVm2Rng; /** * The tags assigned to the VM. */ tags?: string[]; /** * Whether the VM is a template. */ template?: boolean; timeouts?: inputs.GetVm2Timeouts; /** * The VGA configuration. */ vga?: inputs.GetVm2Vga; } /** * A collection of values returned by getVm2. */ export interface GetVm2Result { /** * The cloning configuration. */ readonly clone?: outputs.GetVm2Clone; /** * The CPU configuration. */ readonly cpu: outputs.GetVm2Cpu; /** * The description of the VM. */ readonly description?: string; /** * The unique identifier of the VM in the Proxmox cluster. */ readonly id: number; /** * The name of the VM. */ readonly name?: string; /** * The name of the node where the VM is provisioned. */ readonly nodeName: string; /** * The RNG (Random Number Generator) configuration. */ readonly rng: outputs.GetVm2Rng; /** * The tags assigned to the VM. */ readonly tags: string[]; /** * Whether the VM is a template. */ readonly template?: boolean; readonly timeouts?: outputs.GetVm2Timeouts; /** * The VGA configuration. */ readonly vga: outputs.GetVm2Vga; } /** * !> **DO NOT USE** * This is an experimental implementation of a Proxmox VM datasource using Plugin Framework. */ export declare function getVm2Output(args: GetVm2OutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getVm2. */ export interface GetVm2OutputArgs { /** * The cloning configuration. */ clone?: pulumi.Input; /** * The CPU configuration. */ cpu?: pulumi.Input; /** * The description of the VM. */ description?: pulumi.Input; /** * The unique identifier of the VM in the Proxmox cluster. */ id: pulumi.Input; /** * The name of the VM. */ name?: pulumi.Input; /** * The name of the node where the VM is provisioned. */ nodeName: pulumi.Input; /** * The RNG (Random Number Generator) configuration. */ rng?: pulumi.Input; /** * The tags assigned to the VM. */ tags?: pulumi.Input[]>; /** * Whether the VM is a template. */ template?: pulumi.Input; timeouts?: pulumi.Input; /** * The VGA configuration. */ vga?: pulumi.Input; }