Skip to content

Latest commit

 

History

History
38 lines (30 loc) · 1.4 KB

File metadata and controls

38 lines (30 loc) · 1.4 KB

NodeOut

Properties

Name Type Description Notes
id object ID ноды
created_at object Дата и время создания ноды в формате ISO8601
type object Тип ноды
group_id object ID группы нод
status object Статус
preset_id object ID тарифа ноды
cpu object Количество ядер
ram object Количество памяти
disk object Количество пространства
network object Пропускная способность сети
node_ip object Ip-адрес ноды

Example

from timeweb_cloud_api.models.node_out import NodeOut

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

# convert the object into a dict
node_out_dict = node_out_instance.to_dict()
# create an instance of NodeOut from a dict
node_out_form_dict = node_out.from_dict(node_out_dict)

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