AccountArgs

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

Provides a GPDB Account resource. For information about GPDB Account and how to use it, see What is Account.

NOTE: Available in v1.142.0+.

Import

GPDB Account can be imported using the id, e.g.

$ pulumi import alicloud:gpdb/account:Account example <db_instance_id>:<account_name>

Constructors

Link copied to clipboard
fun AccountArgs(accountDescription: Output<String>? = null, accountName: Output<String>? = null, accountPassword: Output<String>? = null, dbInstanceId: Output<String>? = null)

Functions

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

Properties

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

The description of the account.

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

The name of the account. The account name must be unique and meet the following requirements:

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

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

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

The ID of the instance.