Skip to content

Latest commit

 

History

History
41 lines (32 loc) · 1.98 KB

RequestIPReservationRequest.md

File metadata and controls

41 lines (32 loc) · 1.98 KB

RequestIPReservationRequest

Properties

Name Type Description Notes
comments str [optional]
customdata object [optional]
details str [optional]
facility str [optional]
fail_on_approval_required bool [optional]
href str [optional]
metro str The code of the metro you are requesting the IP reservation in. [optional]
quantity int
tags List[str] [optional]
type str Must be set to 'vrf'
cidr int The size of the VRF IP Reservation's subnet. The following subnet sizes are supported: - IPv4: between 22 - 29 inclusive - IPv6: exactly 64
network str The starting address for this VRF IP Reservation's subnet. Both IPv4 and IPv6 are supported.
vrf_id str The ID of the VRF in which this VRF IP Reservation is created. The VRF must have an existing IP Range that contains the requested subnet. This field may be aliased as just 'vrf'.

Example

from equinix_metal.models.request_ip_reservation_request import RequestIPReservationRequest

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

# convert the object into a dict
request_ip_reservation_request_dict = request_ip_reservation_request_instance.to_dict()
# create an instance of RequestIPReservationRequest from a dict
request_ip_reservation_request_form_dict = request_ip_reservation_request.from_dict(request_ip_reservation_request_dict)

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