Name |
Type |
Description |
Notes |
address |
str |
|
[optional] |
address_family |
int |
|
[optional] |
bill |
bool |
|
[optional] |
cidr |
int |
|
[optional] |
created_at |
datetime |
|
[optional] |
created_by |
Href |
|
[optional] |
customdata |
object |
|
[optional] |
details |
str |
|
[optional] |
gateway |
str |
|
[optional] |
href |
str |
|
[optional] |
id |
str |
|
[optional] |
manageable |
bool |
|
[optional] |
management |
bool |
|
[optional] |
metal_gateway |
MetalGatewayLite |
|
[optional] |
metro |
Metro |
|
[optional] |
netmask |
str |
|
[optional] |
network |
str |
|
[optional] |
project |
Project |
|
[optional] |
project_lite |
Project |
|
[optional] |
public |
bool |
|
[optional] |
state |
str |
|
[optional] |
tags |
List[str] |
|
[optional] |
type |
str |
|
|
vrf |
Vrf |
|
|
from equinix_metal.models.vrf_ip_reservation import VrfIpReservation
# TODO update the JSON string below
json = "{}"
# create an instance of VrfIpReservation from a JSON string
vrf_ip_reservation_instance = VrfIpReservation.from_json(json)
# print the JSON string representation of the object
print(VrfIpReservation.to_json())
# convert the object into a dict
vrf_ip_reservation_dict = vrf_ip_reservation_instance.to_dict()
# create an instance of VrfIpReservation from a dict
vrf_ip_reservation_form_dict = vrf_ip_reservation.from_dict(vrf_ip_reservation_dict)
[Back to Model list] [Back to API list] [Back to README]