UserAuthenticationMode

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

Constructors

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

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val passwordCount: Int? = null

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

Link copied to clipboard
val passwords: 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

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