AccountArgs

data class AccountArgs(val accountDescription: Output<String>? = null, val accountName: Output<String>? = null, val accountPassword: Output<String>? = null, val characterType: Output<String>? = null, val instanceId: Output<String>? = null) : ConvertibleToJava<AccountArgs>

Import

Mongo D B Account can be imported using the id, e.g.

$ pulumi import alicloud:mongodb/account:Account example <instance_id>:<account_name>

Constructors

Link copied to clipboard
constructor(accountDescription: Output<String>? = null, accountName: Output<String>? = null, accountPassword: Output<String>? = null, characterType: Output<String>? = null, instanceId: Output<String>? = null)

Properties

Link copied to clipboard
val accountDescription: Output<String>? = null

Account comment information.

Link copied to clipboard
val accountName: Output<String>? = null

The new password.

Link copied to clipboard
val accountPassword: Output<String>? = null

The password of the database account. The password must be 8 to 32 characters in length. It can contain at least three types of the following characters: uppercase letters, lowercase letters, digits, and special characters. Special characters include ! # $ % ^ & \* ( ) \_ + - =

Link copied to clipboard
val characterType: Output<String>? = null

The role type of the instance. Value description

Link copied to clipboard
val instanceId: Output<String>? = null

The account whose password needs to be reset. Set the value to root.

Functions

Link copied to clipboard
open override fun toJava(): AccountArgs