Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.22 KB

File metadata and controls

32 lines (23 loc) · 1.22 KB

FleetStatus

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.

Properties

Name Type Description Notes
rollout FleetRolloutStatus [optional]
conditions List[Condition] Current state of the fleet.
devices_summary DevicesSummary [optional]

Example

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)

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