import * as pulumi from "@pulumi/pulumi"; /** * Cloud Identity Center users are mapped one-to-one with enterprise employee identities. A Cloud Identity Center user is an identity type that can be uniquely linked to an IAM user under an account for single sign-on. Cloud Identity Center provides full lifecycle management and permission management for enterprise employee identities. We recommend that you centrally manage employee identities within this product. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as volcenginecc from "@volcengine/pulumi-volcenginecc"; * * const cloudIdentityUserDemo = new volcenginecc.cloudidentity.User("CloudIdentityUserDemo", { * userName: "CloudIdentityUserDemo", * displayName: "CloudIdentityUserDemo", * description: "CloudIdentityUserDemo description", * email: "xxx@163.com", * phone: "***********", * password: "********", * passwordResetRequired: true, * }); * ``` * * ## Import * * ```sh * $ pulumi import volcenginecc:cloudidentity/user:User example "user_id" * ``` */ export declare class User extends pulumi.CustomResource { /** * Get an existing User 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?: UserState, opts?: pulumi.CustomResourceOptions): User; /** * Returns true if the given object is an instance of User. 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 User; /** * Creation Time. */ readonly createdTime: pulumi.Output; /** * User Description. */ readonly description: pulumi.Output; /** * User Display Name. */ readonly displayName: pulumi.Output; /** * Email. */ readonly email: pulumi.Output; /** * Identity Type. */ readonly identityType: pulumi.Output; /** * Password. Password must be 8–32 characters long and include at least three of the following: uppercase letters, lowercase letters, numbers, and special symbols. */ readonly password: pulumi.Output; /** * Is password reset required on first login? */ readonly passwordResetRequired: pulumi.Output; /** * Mobile Number. */ readonly phone: pulumi.Output; /** * User Source. */ readonly source: pulumi.Output; /** * Update Time. */ readonly updatedTime: pulumi.Output; /** * User ID. */ readonly userId: pulumi.Output; /** * Username. */ readonly userName: pulumi.Output; /** * Create a User 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?: UserArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering User resources. */ export interface UserState { /** * Creation Time. */ createdTime?: pulumi.Input; /** * User Description. */ description?: pulumi.Input; /** * User Display Name. */ displayName?: pulumi.Input; /** * Email. */ email?: pulumi.Input; /** * Identity Type. */ identityType?: pulumi.Input; /** * Password. Password must be 8–32 characters long and include at least three of the following: uppercase letters, lowercase letters, numbers, and special symbols. */ password?: pulumi.Input; /** * Is password reset required on first login? */ passwordResetRequired?: pulumi.Input; /** * Mobile Number. */ phone?: pulumi.Input; /** * User Source. */ source?: pulumi.Input; /** * Update Time. */ updatedTime?: pulumi.Input; /** * User ID. */ userId?: pulumi.Input; /** * Username. */ userName?: pulumi.Input; } /** * The set of arguments for constructing a User resource. */ export interface UserArgs { /** * User Description. */ description?: pulumi.Input; /** * User Display Name. */ displayName?: pulumi.Input; /** * Email. */ email?: pulumi.Input; /** * Password. Password must be 8–32 characters long and include at least three of the following: uppercase letters, lowercase letters, numbers, and special symbols. */ password?: pulumi.Input; /** * Is password reset required on first login? */ passwordResetRequired?: pulumi.Input; /** * Mobile Number. */ phone?: pulumi.Input; /** * Username. */ userName?: pulumi.Input; }