SecretAuthInfoResponse

data class SecretAuthInfoResponse(val authType: String, val name: String? = null, val secretInfo: Any? = null)

The authentication info when authType is secret

Constructors

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

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

The authentication type. Expected value is 'secret'.

Link copied to clipboard
val name: String? = null

Username or account name for secret auth.

Link copied to clipboard
val secretInfo: Any? = null

Password or key vault secret for secret auth.