View on GitHub

lakeFS

lakeFS - Data version control for your data lake | Git for data

SetupState

Properties

Name Type Description Notes
state str   [optional]
comm_prefs_missing bool true if the comm prefs are missing. [optional]
login_config LoginConfig   [optional]

Example

from lakefs_sdk.models.setup_state import SetupState

# TODO update the JSON string below
json = "{}"
# create an instance of SetupState from a JSON string
setup_state_instance = SetupState.from_json(json)
# print the JSON string representation of the object
print SetupState.to_json()

# convert the object into a dict
setup_state_dict = setup_state_instance.to_dict()
# create an instance of SetupState from a dict
setup_state_form_dict = setup_state.from_dict(setup_state_dict)

[Back to Model list] [Back to API list] [Back to README]