github.com/treeverse/lakefs@v1.24.1-0.20240520134607-95648127bfb0/clients/python/docs/LoginConfig.md (about)

     1  # LoginConfig
     2  
     3  
     4  ## Properties
     5  
     6  Name | Type | Description | Notes
     7  ------------ | ------------- | ------------- | -------------
     8  **rbac** | **str** | RBAC will remain enabled on GUI if \"external\".  That only works with an external auth service.  | [optional] 
     9  **login_url** | **str** | primary URL to use for login. | 
    10  **login_failed_message** | **str** | message to display to users who fail to login; a full sentence that is rendered in HTML and may contain a link to a secondary login method  | [optional] 
    11  **fallback_login_url** | **str** | secondary URL to offer users to use for login. | [optional] 
    12  **fallback_login_label** | **str** | label to place on fallback_login_url. | [optional] 
    13  **login_cookie_names** | **List[str]** | cookie names used to store JWT | 
    14  **logout_url** | **str** | URL to use for logging out. | 
    15  
    16  ## Example
    17  
    18  ```python
    19  from lakefs_sdk.models.login_config import LoginConfig
    20  
    21  # TODO update the JSON string below
    22  json = "{}"
    23  # create an instance of LoginConfig from a JSON string
    24  login_config_instance = LoginConfig.from_json(json)
    25  # print the JSON string representation of the object
    26  print LoginConfig.to_json()
    27  
    28  # convert the object into a dict
    29  login_config_dict = login_config_instance.to_dict()
    30  # create an instance of LoginConfig from a dict
    31  login_config_form_dict = login_config.from_dict(login_config_dict)
    32  ```
    33  [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
    34  
    35