import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../../types/input"; import * as outputs from "../../types/output"; /** * Creates a Group. * Auto-naming is currently not supported for this resource. */ 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; /** * Additional group keys associated with the Group. */ readonly additionalGroupKeys: pulumi.Output; /** * The time when the `Group` was created. */ readonly createTime: pulumi.Output; /** * An extended description to help users determine the purpose of a `Group`. Must not be longer than 4,096 characters. */ readonly description: pulumi.Output; /** * The display name of the `Group`. */ readonly displayName: pulumi.Output; /** * Optional. Dynamic group metadata like queries and status. */ readonly dynamicGroupMetadata: pulumi.Output; /** * The `EntityKey` of the `Group`. */ readonly groupKey: pulumi.Output; /** * Optional. The initial configuration option for the `Group`. */ readonly initialGroupConfig: pulumi.Output; /** * One or more label entries that apply to the Group. Currently supported labels contain a key with an empty value. Google Groups are the default type of group and have a label with a key of `cloudidentity.googleapis.com/groups.discussion_forum` and an empty value. Existing Google Groups can have an additional label with a key of `cloudidentity.googleapis.com/groups.security` and an empty value added to them. **This is an immutable change and the security label cannot be removed once added.** Dynamic groups have a label with a key of `cloudidentity.googleapis.com/groups.dynamic`. Identity-mapped groups for Cloud Search have a label with a key of `system/groups/external` and an empty value. */ readonly labels: pulumi.Output<{ [key: string]: string; }>; /** * The [resource name](https://cloud.google.com/apis/design/resource_names) of the `Group`. Shall be of the form `groups/{group}`. */ readonly name: pulumi.Output; /** * Immutable. The resource name of the entity under which this `Group` resides in the Cloud Identity resource hierarchy. Must be of the form `identitysources/{identity_source}` for external [identity-mapped groups](https://support.google.com/a/answer/9039510) or `customers/{customer_id}` for Google Groups. The `customer_id` must begin with "C" (for example, 'C046psxkn'). [Find your customer ID.] (https://support.google.com/cloudidentity/answer/10070793) */ readonly parent: pulumi.Output; /** * The time when the `Group` was last updated. */ readonly updateTime: 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 { /** * An extended description to help users determine the purpose of a `Group`. Must not be longer than 4,096 characters. */ description?: pulumi.Input; /** * The display name of the `Group`. */ displayName?: pulumi.Input; /** * Optional. Dynamic group metadata like queries and status. */ dynamicGroupMetadata?: pulumi.Input; /** * The `EntityKey` of the `Group`. */ groupKey: pulumi.Input; /** * Optional. The initial configuration option for the `Group`. */ initialGroupConfig?: pulumi.Input; /** * One or more label entries that apply to the Group. Currently supported labels contain a key with an empty value. Google Groups are the default type of group and have a label with a key of `cloudidentity.googleapis.com/groups.discussion_forum` and an empty value. Existing Google Groups can have an additional label with a key of `cloudidentity.googleapis.com/groups.security` and an empty value added to them. **This is an immutable change and the security label cannot be removed once added.** Dynamic groups have a label with a key of `cloudidentity.googleapis.com/groups.dynamic`. Identity-mapped groups for Cloud Search have a label with a key of `system/groups/external` and an empty value. */ labels: pulumi.Input<{ [key: string]: pulumi.Input; }>; /** * Immutable. The resource name of the entity under which this `Group` resides in the Cloud Identity resource hierarchy. Must be of the form `identitysources/{identity_source}` for external [identity-mapped groups](https://support.google.com/a/answer/9039510) or `customers/{customer_id}` for Google Groups. The `customer_id` must begin with "C" (for example, 'C046psxkn'). [Find your customer ID.] (https://support.google.com/cloudidentity/answer/10070793) */ parent: pulumi.Input; }