Skip to content
This repository has been archived by the owner on Jun 13, 2023. It is now read-only.

Latest commit

 

History

History
28 lines (20 loc) · 960 Bytes

RepairHistory.md

File metadata and controls

28 lines (20 loc) · 960 Bytes

RepairHistory

Properties

Name Type Description Notes
repair_history List[RepairHistoryItem] The repair history of the run. [optional]

Example

from databricks_jobs.models.repair_history import RepairHistory

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

# convert the object into a dict
repair_history_dict = repair_history_instance.to_dict()
# create an instance of RepairHistory from a dict
repair_history_form_dict = repair_history.from_dict(repair_history_dict)

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