View on GitHub

lakeFS

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

ImportCreation

Properties

Name Type Description Notes
paths List[ImportLocation]    
commit CommitCreation    
force bool   [optional] [default to False]

Example

from lakefs_sdk.models.import_creation import ImportCreation

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

# convert the object into a dict
import_creation_dict = import_creation_instance.to_dict()
# create an instance of ImportCreation from a dict
import_creation_form_dict = import_creation.from_dict(import_creation_dict)

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