import * as pulumi from "@pulumi/pulumi"; /** * Create a group. */ export declare class Group extends pulumi.CustomResource { /** * Get an existing Group resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, opts?: pulumi.CustomResourceOptions): Group; /** * Returns true if the given object is an instance of Group. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is Group; /** * The display name of the group. */ readonly displayName: pulumi.Output; /** * Optional. The "alias" to use for the group, which will become the final component of the group's resource name. This value must be unique per project. The field is named `groupId` to comply with AIP guidance for user-specified IDs. This value should be 4-63 characters, and valid characters are `/a-z-/`. If not set, it will be generated based on the display name. */ readonly groupId: pulumi.Output; /** * The number of invite links for this group. */ readonly inviteLinkCount: pulumi.Output; /** * The name of the group resource. Format: `projects/{project_number}/groups/{group_alias}` */ readonly name: pulumi.Output; readonly project: pulumi.Output; /** * The number of releases this group is permitted to access. */ readonly releaseCount: pulumi.Output; /** * The number of testers who are members of this group. */ readonly testerCount: pulumi.Output; /** * Create a Group resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args: GroupArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a Group resource. */ export interface GroupArgs { /** * The display name of the group. */ displayName: pulumi.Input; /** * Optional. The "alias" to use for the group, which will become the final component of the group's resource name. This value must be unique per project. The field is named `groupId` to comply with AIP guidance for user-specified IDs. This value should be 4-63 characters, and valid characters are `/a-z-/`. If not set, it will be generated based on the display name. */ groupId?: pulumi.Input; /** * The name of the group resource. Format: `projects/{project_number}/groups/{group_alias}` */ name?: pulumi.Input; project?: pulumi.Input; }