import * as pulumi from "@pulumi/pulumi"; /** * Retrieves the identifiers for all the available resource pools. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as proxmoxve from "@muhlba91/pulumi-proxmoxve"; * * const availablePools = proxmoxve.getPoolsLegacy({}); * ``` */ export declare function getPoolsLegacy(opts?: pulumi.InvokeOptions): Promise; /** * A collection of values returned by getPoolsLegacy. */ export interface GetPoolsLegacyResult { /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * The pool identifiers. */ readonly poolIds: string[]; } /** * Retrieves the identifiers for all the available resource pools. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as proxmoxve from "@muhlba91/pulumi-proxmoxve"; * * const availablePools = proxmoxve.getPoolsLegacy({}); * ``` */ export declare function getPoolsLegacyOutput(opts?: pulumi.InvokeOutputOptions): pulumi.Output; //# sourceMappingURL=getPoolsLegacy.d.ts.map