View on GitHub

lakeFS

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

IcebergPullRequest

Properties

Name Type Description Notes
source IcebergRemoteTable    
destination IcebergLocalTable    

Example

from lakefs_sdk.models.iceberg_pull_request import IcebergPullRequest

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

# convert the object into a dict
iceberg_pull_request_dict = iceberg_pull_request_instance.to_dict()
# create an instance of IcebergPullRequest from a dict
iceberg_pull_request_form_dict = iceberg_pull_request.from_dict(iceberg_pull_request_dict)

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