Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.08 KB

SchedulerStatus.md

File metadata and controls

31 lines (22 loc) · 1.08 KB

SchedulerStatus

The status and the latest scheduler heartbeat.

Properties

Name Type Description Notes
status HealthStatus [optional]
latest_scheduler_heartbeat str The time the scheduler last did a heartbeat. [optional] [readonly]

Example

from titanium_airflow_client.models.scheduler_status import SchedulerStatus

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

# convert the object into a dict
scheduler_status_dict = scheduler_status_instance.to_dict()
# create an instance of SchedulerStatus from a dict
scheduler_status_from_dict = SchedulerStatus.from_dict(scheduler_status_dict)

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