The status and the latest scheduler heartbeat.
Name | Type | Description | Notes |
---|---|---|---|
status | HealthStatus | [optional] | |
latest_scheduler_heartbeat | str | The time the scheduler last did a heartbeat. | [optional] [readonly] |
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)