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
Link copied to clipboard
val passwords: List<String>? = null

Specifies the passwords to use for authentication if type is set to password.

Link copied to clipboard

Specifies the authentication type. Possible options are: password, no-password-required or iam.