TokenStore Class

The configuration settings of the token store.

Constructor

TokenStore(*args: Any, **kwargs: Any)

Variables

Name Description
enabled

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

token_refresh_extension_hours

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.

file_system

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

azure_blob_storage

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

Attributes

azure_blob_storage

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

azure_blob_storage: _models.BlobStorageTokenStore | None

enabled

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

enabled: bool | None

file_system

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

file_system: _models.FileSystemTokenStore | None

token_refresh_extension_hours

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.

token_refresh_extension_hours: float | None