Skip to content

Latest commit

 

History

History
39 lines (30 loc) · 1.96 KB

File metadata and controls

39 lines (30 loc) · 1.96 KB

TemplateVersionStatus

TemplateVersionStatus represents information about the status of a template version.

Properties

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.

Example

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)

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