@muhlba91/pulumi-proxmoxve
Version:
A Pulumi package for creating and managing Proxmox Virtual Environment cloud resources.
45 lines (44 loc) • 1.18 kB
TypeScript
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.Permission.getGroups({});
* ```
*/
export declare function getGroups(opts?: pulumi.InvokeOptions): Promise<GetGroupsResult>;
/**
* A collection of values returned by getGroups.
*/
export interface GetGroupsResult {
/**
* 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.Permission.getGroups({});
* ```
*/
export declare function getGroupsOutput(opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetGroupsResult>;