Name | Type | Description | Notes |
---|---|---|---|
os | DeviceOSSpec | [optional] | |
config | List[ConfigProviderSpec] | List of config providers. | [optional] |
hooks | DeviceHooksSpec | [optional] | |
applications | List[ApplicationSpec] | List of applications. | [optional] |
systemd | DeviceSpecSystemd | [optional] | |
resources | List[ResourceMonitor] | Array of resource monitor configurations. | [optional] |
updated_at | datetime | [optional] | |
conditions | List[Condition] | Current state of the device. | [optional] |
from flightctl.models.template_version_status import TemplateVersionStatus
# TODO update the JSON string below
json = "{}"
# create an instance of TemplateVersionStatus from a JSON string
template_version_status_instance = TemplateVersionStatus.from_json(json)
# print the JSON string representation of the object
print(TemplateVersionStatus.to_json())
# convert the object into a dict
template_version_status_dict = template_version_status_instance.to_dict()
# create an instance of TemplateVersionStatus from a dict
template_version_status_from_dict = TemplateVersionStatus.from_dict(template_version_status_dict)