UNPKG

@muhlba91/pulumi-proxmoxve

Version:

A Pulumi package for creating and managing Proxmox Virtual Environment cloud resources.

45 lines 1.25 kB
import * as pulumi from "@pulumi/pulumi"; /** * Retrieves basic information about all available user groups. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as proxmoxve from "@muhlba91/pulumi-proxmoxve"; * * const availableGroups = proxmoxve.getGroupsLegacy({}); * ``` */ export declare function getGroupsLegacy(opts?: pulumi.InvokeOptions): Promise<GetGroupsLegacyResult>; /** * A collection of values returned by getGroupsLegacy. */ export interface GetGroupsLegacyResult { /** * The group comments. */ readonly comments: string[]; /** * The group identifiers. */ readonly groupIds: string[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; } /** * Retrieves basic information about all available user groups. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as proxmoxve from "@muhlba91/pulumi-proxmoxve"; * * const availableGroups = proxmoxve.getGroupsLegacy({}); * ``` */ export declare function getGroupsLegacyOutput(opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetGroupsLegacyResult>; //# sourceMappingURL=getGroupsLegacy.d.ts.map