User

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.

NOTE: Available in v1.142.0+.

Example Usage

Basic Usage

package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.alicloud.eds.User;
import com.pulumi.alicloud.eds.UserArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var example = new User("example", UserArgs.builder()
.email("your_email")
.endUserId("example_value")
.build());
}
}

Import

ECD User can be imported using the id, e.g.

$ pulumi import alicloud:eds/user:User example <end_user_id>

Properties

Link copied to clipboard
val email: Output<String>

The email of the user email.

Link copied to clipboard
val endUserId: Output<String>

The Username. The custom setting is composed of lowercase letters, numbers and underscores, and the length is 3~24 characters.

Link copied to clipboard
val id: Output<String>
Link copied to clipboard
val password: Output<String>?

The password of the user password.

Link copied to clipboard
val phone: Output<String>?

The phone of the mobile phone number.

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
val status: Output<String>

The status of the resource. Valid values: Unlocked, Locked.

Link copied to clipboard
val urn: Output<String>