import * as pulumi from "@pulumi/pulumi"; import * as outputs from "./types/output"; /** * Retrieves information about a specific resource pool. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as proxmoxve from "@muhlba91/pulumi-proxmoxve"; * * const operationsPool = proxmoxve.getPoolLegacy({ * poolId: "operations", * }); * ``` */ export declare function getPoolLegacy(args: GetPoolLegacyArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getPoolLegacy. */ export interface GetPoolLegacyArgs { /** * The pool identifier. */ poolId: string; } /** * A collection of values returned by getPoolLegacy. */ export interface GetPoolLegacyResult { /** * The pool comment. */ readonly comment: string; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * The pool members. */ readonly members: outputs.GetPoolLegacyMember[]; readonly poolId: string; } /** * Retrieves information about a specific resource pool. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as proxmoxve from "@muhlba91/pulumi-proxmoxve"; * * const operationsPool = proxmoxve.getPoolLegacy({ * poolId: "operations", * }); * ``` */ export declare function getPoolLegacyOutput(args: GetPoolLegacyOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getPoolLegacy. */ export interface GetPoolLegacyOutputArgs { /** * The pool identifier. */ poolId: pulumi.Input; } //# sourceMappingURL=getPoolLegacy.d.ts.map