UserAuthenticationModeArgs

data class UserAuthenticationModeArgs(val passwordCount: Output<Int>? = null, val passwords: Output<List<String>>? = null, val type: Output<String>) : ConvertibleToJava<UserAuthenticationModeArgs>

Constructors

Link copied to clipboard
constructor(passwordCount: Output<Int>? = null, passwords: Output<List<String>>? = null, type: Output<String>)

Properties

Link copied to clipboard
val passwordCount: Output<Int>? = null

Number of passwords belonging to the user if type is set to password.

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

Set of passwords used for authentication if type is set to password. You can create up to two passwords for each user.

Link copied to clipboard
val type: Output<String>

Specifies the authentication type. Valid values are: password or iam.

Functions

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