BasicAuthenticationArgs

data class BasicAuthenticationArgs(val password: Output<String>? = null, val type: Output<String>, val username: Output<String>? = null) : ConvertibleToJava<BasicAuthenticationArgs>

Constructors

Link copied to clipboard
constructor(password: Output<String>? = null, type: Output<String>, username: Output<String>? = null)

Properties

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

Gets or sets the password, return value will always be empty.

Link copied to clipboard
val type: Output<String>

Gets or sets the HTTP authentication type. Expected value is 'Basic'.

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

Gets or sets the username.

Functions

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