import * as pulumi from "@pulumi/pulumi"; import * as inputs from "./types/input"; import * as outputs from "./types/output"; 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 state Any extra arguments used during the lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, state?: GroupState, 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 ID, in GUID format, of the Group. */ readonly cplnId: pulumi.Output; /** * Description of the Group. */ readonly description: pulumi.Output; /** * Executes the expression against the users' claims to decide whether a user belongs to this group. This method is useful for managing the grouping of users logged-in with SAML providers. */ readonly identityMatcher: pulumi.Output; /** * A predefined set of criteria or conditions used to query and retrieve members within the group. */ readonly memberQuery: pulumi.Output; /** * Name of the Group. */ readonly name: pulumi.Output; /** * Origin of the Group. Valid values: `default`, `builtin`, `synthetic`. */ readonly origin: pulumi.Output; /** * Full link to this resource. Can be referenced by other resources. */ readonly selfLink: pulumi.Output; /** * List of service accounts that exists within the configured org. Group membership will fail if the service account does not exits within the org. */ readonly serviceAccounts: pulumi.Output; /** * Key-value map of resource tags. */ readonly tags: pulumi.Output<{ [key: string]: string; }>; /** * List of either the user ID or email address for a user that exists within the configured org. Group membership will fail if the user ID / email does not exist within the org. */ readonly userIdsAndEmails: 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); } /** * Input properties used for looking up and filtering Group resources. */ export interface GroupState { /** * The ID, in GUID format, of the Group. */ cplnId?: pulumi.Input; /** * Description of the Group. */ description?: pulumi.Input; /** * Executes the expression against the users' claims to decide whether a user belongs to this group. This method is useful for managing the grouping of users logged-in with SAML providers. */ identityMatcher?: pulumi.Input; /** * A predefined set of criteria or conditions used to query and retrieve members within the group. */ memberQuery?: pulumi.Input; /** * Name of the Group. */ name?: pulumi.Input; /** * Origin of the Group. Valid values: `default`, `builtin`, `synthetic`. */ origin?: pulumi.Input; /** * Full link to this resource. Can be referenced by other resources. */ selfLink?: pulumi.Input; /** * List of service accounts that exists within the configured org. Group membership will fail if the service account does not exits within the org. */ serviceAccounts?: pulumi.Input[]>; /** * Key-value map of resource tags. */ tags?: pulumi.Input<{ [key: string]: pulumi.Input; }>; /** * List of either the user ID or email address for a user that exists within the configured org. Group membership will fail if the user ID / email does not exist within the org. */ userIdsAndEmails?: pulumi.Input[]>; } /** * The set of arguments for constructing a Group resource. */ export interface GroupArgs { /** * Description of the Group. */ description?: pulumi.Input; /** * Executes the expression against the users' claims to decide whether a user belongs to this group. This method is useful for managing the grouping of users logged-in with SAML providers. */ identityMatcher?: pulumi.Input; /** * A predefined set of criteria or conditions used to query and retrieve members within the group. */ memberQuery?: pulumi.Input; /** * Name of the Group. */ name?: pulumi.Input; /** * List of service accounts that exists within the configured org. Group membership will fail if the service account does not exits within the org. */ serviceAccounts?: pulumi.Input[]>; /** * Key-value map of resource tags. */ tags?: pulumi.Input<{ [key: string]: pulumi.Input; }>; /** * List of either the user ID or email address for a user that exists within the configured org. Group membership will fail if the user ID / email does not exist within the org. */ userIdsAndEmails?: pulumi.Input[]>; }