SecretAuthInfoArgs

data class SecretAuthInfoArgs(val authType: Output<String>, val name: Output<String>? = null, val secretInfo: Output<Any>? = null) : ConvertibleToJava<SecretAuthInfoArgs>

The authentication info when authType is secret

Constructors

Link copied to clipboard
constructor(authType: Output<String>, name: Output<String>? = null, secretInfo: Output<Any>? = null)

Properties

Link copied to clipboard
val authType: Output<String>

The authentication type. Expected value is 'secret'.

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

Username or account name for secret auth.

Link copied to clipboard
val secretInfo: Output<Any>? = null

Password or key vault secret for secret auth.

Functions

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