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

Latest commit

 

History

History
30 lines (22 loc) · 1.24 KB

TerminationReason.md

File metadata and controls

30 lines (22 loc) · 1.24 KB

TerminationReason

Properties

Name Type Description Notes
code TerminationCode [optional]
type TerminationType [optional]
parameters Dict[str, object] An object with additional information about why a cluster was terminated. The object keys are one of `TerminationParameter` and the value is the termination information. [optional]

Example

from databricks_jobs.models.termination_reason import TerminationReason

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

# convert the object into a dict
termination_reason_dict = termination_reason_instance.to_dict()
# create an instance of TerminationReason from a dict
termination_reason_form_dict = termination_reason.from_dict(termination_reason_dict)

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