@muhlba91/pulumi-proxmoxve
Version:
A Pulumi package for creating and managing Proxmox Virtual Environment cloud resources.
47 lines • 1.56 kB
TypeScript
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<GetHagroupsLegacyResult>;
/**
* 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<GetHagroupsLegacyResult>;
//# sourceMappingURL=getHagroupsLegacy.d.ts.map