Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 939 Bytes

File metadata and controls

30 lines (21 loc) · 939 Bytes

DeviceOsSpec

DeviceOsSpec describes the target OS for the device.

Properties

Name Type Description Notes
image str The target OS image name or URL.

Example

from flightctl.models.device_os_spec import DeviceOsSpec

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

# convert the object into a dict
device_os_spec_dict = device_os_spec_instance.to_dict()
# create an instance of DeviceOsSpec from a dict
device_os_spec_from_dict = DeviceOsSpec.from_dict(device_os_spec_dict)

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