Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1017 Bytes

File metadata and controls

31 lines (22 loc) · 1017 Bytes

DeviceOsStatus

Current status of the device OS.

Properties

Name Type Description Notes
image str Version of the OS image.
image_digest str The digest of the OS image (e.g. sha256:a0...).

Example

from flightctl.models.device_os_status import DeviceOsStatus

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

# convert the object into a dict
device_os_status_dict = device_os_status_instance.to_dict()
# create an instance of DeviceOsStatus from a dict
device_os_status_from_dict = DeviceOsStatus.from_dict(device_os_status_dict)

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