Config¶
Properties¶
| Name | Type | Description | Notes |
|---|---|---|---|
| version_config | VersionConfig | [optional] | |
| storage_config | StorageConfig | [optional] | |
| storage_config_list | List[StorageConfig] | [optional] | |
| ui_config | UIConfig | [optional] | |
| capabilities_config | CapabilitiesConfig | [optional] |
Example¶
from lakefs_enterprise_sdk.models.config import Config
# TODO update the JSON string below
json = "{}"
# create an instance of Config from a JSON string
config_instance = Config.from_json(json)
# print the JSON string representation of the object
print Config.to_json()
# convert the object into a dict
config_dict = config_instance.to_dict()
# create an instance of Config from a dict
config_form_dict = config.from_dict(config_dict)