BasicAuthModelArgs

data class BasicAuthModelArgs(val password: Output<String>, val type: Output<String>, val userName: Output<String>) : ConvertibleToJava<BasicAuthModelArgs>

Model for API authentication with basic flow - user name + password.

Constructors

Link copied to clipboard
constructor(password: Output<String>, type: Output<String>, userName: Output<String>)

Properties

Link copied to clipboard
val password: Output<String>

The password

Link copied to clipboard
val type: Output<String>

Type of paging Expected value is 'Basic'.

Link copied to clipboard
val userName: Output<String>

The user name.

Functions

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