DatasetPullRequest
Properties
| Name |
Type |
Description |
Notes |
| id |
str |
|
|
| dataset |
str |
|
|
| title |
str |
|
|
| description |
str |
|
[optional] |
| author |
str |
|
|
| status |
str |
|
|
| base_version |
int |
version this PR was opened against (v<N>) |
|
| latest_version |
int |
the dataset's current latest version |
|
| stale |
bool |
true when latest advanced past base_version; publish is blocked |
|
| conflicted |
bool |
true when the dataset name already exists; a create-via-PR can no longer be merged |
|
| source_ref |
str |
the PR working ref, pr/<id> |
|
| creation_date |
int |
|
|
| closed_date |
int |
closing or merge date; set only for closed or merged pull requests |
[optional] |
Example
from lakefs_enterprise_sdk.models.dataset_pull_request import DatasetPullRequest
# TODO update the JSON string below
json = "{}"
# create an instance of DatasetPullRequest from a JSON string
dataset_pull_request_instance = DatasetPullRequest.from_json(json)
# print the JSON string representation of the object
print DatasetPullRequest.to_json()
# convert the object into a dict
dataset_pull_request_dict = dataset_pull_request_instance.to_dict()
# create an instance of DatasetPullRequest from a dict
dataset_pull_request_form_dict = dataset_pull_request.from_dict(dataset_pull_request_dict)