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

Latest commit

 

History

History
32 lines (24 loc) · 1.26 KB

RunState.md

File metadata and controls

32 lines (24 loc) · 1.26 KB

RunState

The result and lifecycle state of the run.

Properties

Name Type Description Notes
life_cycle_state RunLifeCycleState [optional]
result_state RunResultState [optional]
user_cancelled_or_timedout bool Whether a run was canceled manually by a user or by the scheduler because the run timed out. [optional]
state_message str A descriptive message for the current state. This field is unstructured, and its exact format is subject to change. [optional]

Example

from databricks_jobs.models.run_state import RunState

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

# convert the object into a dict
run_state_dict = run_state_instance.to_dict()
# create an instance of RunState from a dict
run_state_form_dict = run_state.from_dict(run_state_dict)

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