Skip to content

Latest commit

 

History

History
37 lines (29 loc) · 1.26 KB

File metadata and controls

37 lines (29 loc) · 1.26 KB

Vpc

Properties

Name Type Description Notes
id object ID сети.
name object Имя сети.
subnet_v4 object Маска подсети.
location object Локация сети.
created_at object Дата создания сети.
description object Описание.
availability_zone AvailabilityZone
public_ip object Публичный IP-адрес сети.
type object Тип сети.
busy_address object Занятые адреса в сети

Example

from timeweb_cloud_api.models.vpc import Vpc

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

# convert the object into a dict
vpc_dict = vpc_instance.to_dict()
# create an instance of Vpc from a dict
vpc_form_dict = vpc.from_dict(vpc_dict)

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