CustomAccountArgs

data class CustomAccountArgs(val loginUrl: Output<String>, val password: Output<String>, val username: Output<String>) : ConvertibleToJava<CustomAccountArgs>

Describes authentication configuration that uses a custom account.

Constructors

Link copied to clipboard
fun CustomAccountArgs(loginUrl: Output<String>, password: Output<String>, username: Output<String>)

Functions

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

Properties

Link copied to clipboard
val loginUrl: Output<String>

The login form URL of the website.

Link copied to clipboard
val password: Output<String>

Input only. The password of the custom account. The credential is stored encrypted and not returned in any response nor included in audit logs.

Link copied to clipboard
val username: Output<String>

The user name of the custom account.