TokenRequestPatchArgs

data class TokenRequestPatchArgs(val audience: Output<String>? = null, val expirationSeconds: Output<Int>? = null) : ConvertibleToJava<TokenRequestPatchArgs>

TokenRequest contains parameters of a service account token.

Constructors

Link copied to clipboard
fun TokenRequestPatchArgs(audience: Output<String>? = null, expirationSeconds: Output<Int>? = null)

Functions

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

Properties

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

Audience is the intended audience of the token in "TokenRequestSpec". It will default to the audiences of kube apiserver.

Link copied to clipboard
val expirationSeconds: Output<Int>? = null

ExpirationSeconds is the duration of validity of the token in "TokenRequestSpec". It has the same default value of "ExpirationSeconds" in "TokenRequestSpec"