import * as pulumi from "@pulumi/pulumi"; /** * > **Deprecated:** Use `proxmoxve.getHagroups` instead. This data source will be removed in v1.0. * * Retrieves the list of High Availability groups. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as proxmoxve from "@muhlba91/pulumi-proxmoxve"; * * const example = proxmoxve.getHagroupsLegacy({}); * export const dataProxmoxVirtualEnvironmentHagroups = example.then(example => example.groupIds); * ``` */ export declare function getHagroupsLegacy(opts?: pulumi.InvokeOptions): Promise; /** * A collection of values returned by getHagroupsLegacy. */ export interface GetHagroupsLegacyResult { /** * The identifiers of the High Availability groups. */ readonly groupIds: string[]; /** * The unique identifier of this resource. */ readonly id: string; } /** * > **Deprecated:** Use `proxmoxve.getHagroups` instead. This data source will be removed in v1.0. * * Retrieves the list of High Availability groups. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as proxmoxve from "@muhlba91/pulumi-proxmoxve"; * * const example = proxmoxve.getHagroupsLegacy({}); * export const dataProxmoxVirtualEnvironmentHagroups = example.then(example => example.groupIds); * ``` */ export declare function getHagroupsLegacyOutput(opts?: pulumi.InvokeOutputOptions): pulumi.Output; //# sourceMappingURL=getHagroupsLegacy.d.ts.map