Skip to content

Latest commit

 

History

History
34 lines (26 loc) · 1.19 KB

File metadata and controls

34 lines (26 loc) · 1.19 KB

RouterIn

Properties

Name Type Description Notes
name object Имя роутера
comment object Описание роутера [optional]
preset_id object ID тарифа
project_id object ID проекта [optional]
networks object Подключаемые сети
ips object IP-адреса [optional]
parent_service RouterInParentService [optional]

Example

from timeweb_cloud_api.models.router_in import RouterIn

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

# convert the object into a dict
router_in_dict = router_in_instance.to_dict()
# create an instance of RouterIn from a dict
router_in_form_dict = router_in.from_dict(router_in_dict)

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