TemplateVersionStatus represents information about the status of a template version.
| Name | Type | Description | Notes |
|---|---|---|---|
| update_policy | DeviceUpdatePolicySpec | [optional] | |
| os | DeviceOsSpec | [optional] | |
| config | List[ConfigProviderSpec] | List of config providers. | [optional] |
| applications | List[ApplicationProviderSpec] | List of application providers. | [optional] |
| systemd | DeviceSpecSystemd | [optional] | |
| resources | List[ResourceMonitor] | Array of resource monitor configurations. | [optional] |
| consoles | List[DeviceConsole] | The list of active console sessions. | [optional] |
| decommissioning | DeviceDecommission | [optional] | |
| updated_at | datetime | The time at which the template was last updated. | [optional] |
| conditions | List[Condition] | Current state of the device. |
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)