import * as pulumi from "@pulumi/pulumi"; /** * Data Source schema for Volcengine::CloudIdentity::User */ export declare function getUser(args: GetUserArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getUser. */ export interface GetUserArgs { /** * Uniquely identifies the resource. */ id: string; } /** * A collection of values returned by getUser. */ export interface GetUserResult { /** * Creation Time. */ readonly createdTime: string; /** * User Description. */ readonly description: string; /** * User Display Name. */ readonly displayName: string; /** * Email. */ readonly email: string; /** * Uniquely identifies the resource. */ readonly id: string; /** * Identity Type. */ readonly identityType: string; /** * 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: string; /** * Is password reset required on first login? */ readonly passwordResetRequired: boolean; /** * Mobile Number. */ readonly phone: string; /** * User Source. */ readonly source: string; /** * Update Time. */ readonly updatedTime: string; /** * User ID. */ readonly userId: string; /** * Username. */ readonly userName: string; } /** * Data Source schema for Volcengine::CloudIdentity::User */ export declare function getUserOutput(args: GetUserOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getUser. */ export interface GetUserOutputArgs { /** * Uniquely identifies the resource. */ id: pulumi.Input; }