You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Dec 23, 2024. It is now read-only.
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
fromequinix_metal.models.request_ip_reservation_requestimportRequestIPReservationRequest# TODO update the JSON string belowjson="{}"# create an instance of RequestIPReservationRequest from a JSON stringrequest_ip_reservation_request_instance=RequestIPReservationRequest.from_json(json)
# print the JSON string representation of the objectprint(RequestIPReservationRequest.to_json())
# convert the object into a dictrequest_ip_reservation_request_dict=request_ip_reservation_request_instance.to_dict()
# create an instance of RequestIPReservationRequest from a dictrequest_ip_reservation_request_form_dict=request_ip_reservation_request.from_dict(request_ip_reservation_request_dict)