DeviceOsSpec describes the target OS for the device.
| Name | Type | Description | Notes |
|---|---|---|---|
| image | str | The target OS image name or URL. |
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)