FleetStatus represents information about the status of a fleet. Status may trail the actual state of a fleet, especially if devices of a fleet have not contacted the management service in a while.
| Name | Type | Description | Notes |
|---|---|---|---|
| rollout | FleetRolloutStatus | [optional] | |
| conditions | List[Condition] | Current state of the fleet. | |
| devices_summary | DevicesSummary | [optional] |
from flightctl.models.fleet_status import FleetStatus
# TODO update the JSON string below
json = "{}"
# create an instance of FleetStatus from a JSON string
fleet_status_instance = FleetStatus.from_json(json)
# print the JSON string representation of the object
print(FleetStatus.to_json())
# convert the object into a dict
fleet_status_dict = fleet_status_instance.to_dict()
# create an instance of FleetStatus from a dict
fleet_status_from_dict = FleetStatus.from_dict(fleet_status_dict)