@muhlba91/pulumi-proxmoxve
Version:
A Pulumi package for creating and managing Proxmox Virtual Environment cloud resources.
73 lines • 1.92 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "./types/output";
/**
* Retrieves information about a specific user group.
*
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as proxmoxve from "@muhlba91/pulumi-proxmoxve";
*
* const operationsTeam = proxmoxve.getGroupLegacy({
* groupId: "operations-team",
* });
* ```
*/
export declare function getGroupLegacy(args: GetGroupLegacyArgs, opts?: pulumi.InvokeOptions): Promise<GetGroupLegacyResult>;
/**
* A collection of arguments for invoking getGroupLegacy.
*/
export interface GetGroupLegacyArgs {
/**
* The group identifier.
*/
groupId: string;
}
/**
* A collection of values returned by getGroupLegacy.
*/
export interface GetGroupLegacyResult {
/**
* The access control list.
*/
readonly acls: outputs.GetGroupLegacyAcl[];
/**
* The group comment.
*/
readonly comment: string;
readonly groupId: string;
/**
* The provider-assigned unique ID for this managed resource.
*/
readonly id: string;
/**
* The group members as a list with `username@realm` entries.
*/
readonly members: string[];
}
/**
* Retrieves information about a specific user group.
*
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as proxmoxve from "@muhlba91/pulumi-proxmoxve";
*
* const operationsTeam = proxmoxve.getGroupLegacy({
* groupId: "operations-team",
* });
* ```
*/
export declare function getGroupLegacyOutput(args: GetGroupLegacyOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetGroupLegacyResult>;
/**
* A collection of arguments for invoking getGroupLegacy.
*/
export interface GetGroupLegacyOutputArgs {
/**
* The group identifier.
*/
groupId: pulumi.Input<string>;
}
//# sourceMappingURL=getGroupLegacy.d.ts.map