import * as pulumi from "@pulumi/pulumi"; /** * Get a group. */ export declare function getGroup(args: GetGroupArgs, opts?: pulumi.InvokeOptions): Promise; export interface GetGroupArgs { groupId: string; project?: string; } export interface GetGroupResult { /** * The display name of the group. */ readonly displayName: string; /** * The number of invite links for this group. */ readonly inviteLinkCount: number; /** * The name of the group resource. Format: `projects/{project_number}/groups/{group_alias}` */ readonly name: string; /** * The number of releases this group is permitted to access. */ readonly releaseCount: number; /** * The number of testers who are members of this group. */ readonly testerCount: number; } /** * Get a group. */ export declare function getGroupOutput(args: GetGroupOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output; export interface GetGroupOutputArgs { groupId: pulumi.Input; project?: pulumi.Input; }