import * as pulumi from "@pulumi/pulumi"; import { input as inputs, output as outputs } from "../../types"; /** * Creates 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 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; /** * Required. Immutable. The `EntityKey` of the `Group`. */ readonly groupKey: pulumi.Output; /** * Required. 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. Examples: {"cloudidentity.googleapis.com/groups.discussion_forum": ""} or {"system/groups/external": ""}. */ 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_id}`. */ readonly name: pulumi.Output; /** * Required. 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_id}` for external- identity-mapped groups or `customers/{customer_id}` for Google Groups. */ 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. */ readonly description?: pulumi.Input; /** * The display name of the `Group`. */ readonly displayName?: pulumi.Input; /** * Optional. Dynamic group metadata like queries and status. */ readonly dynamicGroupMetadata?: pulumi.Input; /** * Required. Immutable. The `EntityKey` of the `Group`. */ readonly groupKey?: pulumi.Input; readonly groupsId: pulumi.Input; /** * Required. 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. Examples: {"cloudidentity.googleapis.com/groups.discussion_forum": ""} or {"system/groups/external": ""}. */ readonly labels?: pulumi.Input<{ [key: string]: pulumi.Input; }>; /** * Required. 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_id}` for external- identity-mapped groups or `customers/{customer_id}` for Google Groups. */ readonly parent?: pulumi.Input; }