Skip to content

Latest commit

 

History

History
32 lines (24 loc) · 1014 Bytes

File metadata and controls

32 lines (24 loc) · 1014 Bytes

Network

Сеть

Properties

Name Type Description Notes
id object ID сети.
floating_ip object Плавающий IP-адрес [optional]
local_ip object IP-адрес в сети. [optional]
ip object IP-адрес в сети. [optional]

Example

from timeweb_cloud_api.models.network import Network

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

# convert the object into a dict
network_dict = network_instance.to_dict()
# create an instance of Network from a dict
network_form_dict = network.from_dict(network_dict)

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