CompactionStatus
Properties
| Name |
Type |
Description |
Notes |
| compacted |
bool |
whether the branch holds a compacted meta-range |
|
| meta_range_id |
str |
the compacted meta-range the branch holds, absent when it holds none |
[optional] |
Example
from lakefs_enterprise_sdk.models.compaction_status import CompactionStatus
# TODO update the JSON string below
json = "{}"
# create an instance of CompactionStatus from a JSON string
compaction_status_instance = CompactionStatus.from_json(json)
# print the JSON string representation of the object
print CompactionStatus.to_json()
# convert the object into a dict
compaction_status_dict = compaction_status_instance.to_dict()
# create an instance of CompactionStatus from a dict
compaction_status_form_dict = compaction_status.from_dict(compaction_status_dict)