Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.35 KB

DevicesSummary.md

File metadata and controls

33 lines (24 loc) · 1.35 KB

DevicesSummary

A summary of the devices in the fleet returned when fetching a single Fleet.

Properties

Name Type Description Notes
total int The total number of devices in the fleet.
application_status Dict[str, int] A breakdown of the devices in the fleet by "application" status. [optional]
summary_status Dict[str, int] A breakdown of the devices in the fleet by "summary" status. [optional]
update_status Dict[str, int] A breakdown of the devices in the fleet by "updated" status. [optional]

Example

from flightctl.models.devices_summary import DevicesSummary

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

# convert the object into a dict
devices_summary_dict = devices_summary_instance.to_dict()
# create an instance of DevicesSummary from a dict
devices_summary_from_dict = DevicesSummary.from_dict(devices_summary_dict)

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