Skip to content

Latest commit

 

History

History
34 lines (26 loc) · 1.45 KB

File metadata and controls

34 lines (26 loc) · 1.45 KB

ServersOs

Properties

Name Type Description Notes
id object ID операционной системы. [optional]
family object Семейство операционной системы. [optional]
name object Название операционной системы. [optional]
version object Версия операционной системы. [optional]
version_codename object Кодовое имя версии операционной системы. [optional]
description object Описание операционной системы. [optional]
requirements ServersOsRequirements [optional]

Example

from timeweb_cloud_api.models.servers_os import ServersOs

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

# convert the object into a dict
servers_os_dict = servers_os_instance.to_dict()
# create an instance of ServersOs from a dict
servers_os_form_dict = servers_os.from_dict(servers_os_dict)

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