import * as pulumi from "@pulumi/pulumi"; /** * 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.getHagroups({}); * export const dataProxmoxHagroups = example.then(example => example.groupIds); * ``` */ export declare function getHagroups(opts?: pulumi.InvokeOptions): Promise; /** * A collection of values returned by getHagroups. */ export interface GetHagroupsResult { /** * The identifiers of the High Availability groups. */ readonly groupIds: string[]; /** * The unique identifier of this resource. */ readonly id: string; } /** * 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.getHagroups({}); * export const dataProxmoxHagroups = example.then(example => example.groupIds); * ``` */ export declare function getHagroupsOutput(opts?: pulumi.InvokeOutputOptions): pulumi.Output; //# sourceMappingURL=getHagroups.d.ts.map