import * as pulumi from "@pulumi/pulumi"; /** * Gets the details of a group. */ export declare function getGroup(args: GetGroupArgs, opts?: pulumi.InvokeOptions): Promise; export interface GetGroupArgs { groupId: string; location: string; project?: string; } export interface GetGroupResult { /** * The timestamp when the group was created. */ readonly createTime: string; /** * Optional. The description of the group. */ readonly description: string; /** * Optional. User-friendly display name. */ readonly displayName: string; /** * Labels as key value pairs. */ readonly labels: { [key: string]: string; }; /** * The name of the group. */ readonly name: string; /** * The timestamp when the group was last updated. */ readonly updateTime: string; } /** * Gets the details of a group. */ export declare function getGroupOutput(args: GetGroupOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output; export interface GetGroupOutputArgs { groupId: pulumi.Input; location: pulumi.Input; project?: pulumi.Input; }