TokenStoreArgs

data class TokenStoreArgs(val azureBlobStorage: Output<BlobStorageTokenStoreArgs>? = null, val enabled: Output<Boolean>? = null, val fileSystem: Output<FileSystemTokenStoreArgs>? = null, val tokenRefreshExtensionHours: Output<Double>? = null) : ConvertibleToJava<TokenStoreArgs>

The configuration settings of the token store.

Constructors

Link copied to clipboard
constructor(azureBlobStorage: Output<BlobStorageTokenStoreArgs>? = null, enabled: Output<Boolean>? = null, fileSystem: Output<FileSystemTokenStoreArgs>? = null, tokenRefreshExtensionHours: Output<Double>? = null)

Properties

Link copied to clipboard

The configuration settings of the storage of the tokens if blob storage is used.

Link copied to clipboard
val enabled: Output<Boolean>? = null

true to durably store platform-specific security tokens that are obtained during login flows; otherwise, false. The default is false.

Link copied to clipboard

The configuration settings of the storage of the tokens if a file system is used.

Link copied to clipboard
val tokenRefreshExtensionHours: Output<Double>? = null

The number of hours after session token expiration that a session token can be used to call the token refresh API. The default is 72 hours.

Functions

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