Properties
| Name |
Type |
Description |
Notes |
| token |
str |
JWT issued by an external IdP (e.g. Entra ID, Auth0). The token is verified against the configured JWKS, its identity and group claims are resolved to a lakeFS session, and an AuthenticationToken referencing that session is returned. |
|
Example
from lakefs_enterprise_sdk.models.jwt_login_information import JWTLoginInformation
# TODO update the JSON string below
json = "{}"
# create an instance of JWTLoginInformation from a JSON string
jwt_login_information_instance = JWTLoginInformation.from_json(json)
# print the JSON string representation of the object
print JWTLoginInformation.to_json()
# convert the object into a dict
jwt_login_information_dict = jwt_login_information_instance.to_dict()
# create an instance of JWTLoginInformation from a dict
jwt_login_information_form_dict = jwt_login_information.from_dict(jwt_login_information_dict)