import * as pulumi from "@pulumi/pulumi";
/**
 * Provides a Elastic Desktop Service (ECD) User resource.
 *
 * For information about Elastic Desktop Service (ECD) User and how to use it, see [What is User](https://www.alibabacloud.com/help/en/wuying-workspace/developer-reference/api-eds-user-2021-03-08-createusers-desktop).
 *
 * > **NOTE:** Available since v1.142.0.
 *
 * ## Example Usage
 *
 * Basic Usage
 *
 * ```typescript
 * import * as pulumi from "@pulumi/pulumi";
 * import * as alicloud from "@pulumi/alicloud";
 *
 * const _default = new alicloud.eds.User("default", {
 *     endUserId: "terraform_example123",
 *     email: "tf.example@abc.com",
 *     phone: "18888888888",
 *     password: "Example_123",
 * });
 * ```
 *
 * 📚 Need more examples? VIEW MORE EXAMPLES
 *
 * ## Import
 *
 * ECD User can be imported using the id, e.g.
 *
 * ```sh
 * $ pulumi import alicloud:eds/user:User example <end_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<pulumi.ID>, 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;
    /**
     * The email of the user email.
     */
    readonly email: pulumi.Output<string>;
    /**
     * The Username. The custom setting is composed of lowercase letters, numbers and underscores, and the length is 3~24 characters.
     */
    readonly endUserId: pulumi.Output<string>;
    /**
     * The password of the user password.
     */
    readonly password: pulumi.Output<string | undefined>;
    /**
     * The phone of the mobile phone number.
     */
    readonly phone: pulumi.Output<string | undefined>;
    /**
     * The status of the resource. Valid values: `Unlocked`, `Locked`.
     */
    readonly status: pulumi.Output<string>;
    /**
     * 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 {
    /**
     * The email of the user email.
     */
    email?: pulumi.Input<string | undefined>;
    /**
     * The Username. The custom setting is composed of lowercase letters, numbers and underscores, and the length is 3~24 characters.
     */
    endUserId?: pulumi.Input<string | undefined>;
    /**
     * The password of the user password.
     */
    password?: pulumi.Input<string | undefined>;
    /**
     * The phone of the mobile phone number.
     */
    phone?: pulumi.Input<string | undefined>;
    /**
     * The status of the resource. Valid values: `Unlocked`, `Locked`.
     */
    status?: pulumi.Input<string | undefined>;
}
/**
 * The set of arguments for constructing a User resource.
 */
export interface UserArgs {
    /**
     * The email of the user email.
     */
    email: pulumi.Input<string>;
    /**
     * The Username. The custom setting is composed of lowercase letters, numbers and underscores, and the length is 3~24 characters.
     */
    endUserId: pulumi.Input<string>;
    /**
     * The password of the user password.
     */
    password?: pulumi.Input<string | undefined>;
    /**
     * The phone of the mobile phone number.
     */
    phone?: pulumi.Input<string | undefined>;
    /**
     * The status of the resource. Valid values: `Unlocked`, `Locked`.
     */
    status?: pulumi.Input<string | undefined>;
}
//# sourceMappingURL=user.d.ts.map