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.
An IP address (or IP Address range) contained within one of the project's IP Reservations
customdata
Dict[str, object]
Optional User-defined JSON object value.
[optional]
href
str
[optional]
next_hop
str
An IP address contained within the Metal Gateways' IP Reservation range.
tags
List[str]
Optional list of User-defined tags. Can be used by users to provide additional details or context regarding the purpose or usage of this resource.
[optional]
Example
fromequinix_metal.models.metal_gateway_elastic_ip_create_inputimportMetalGatewayElasticIpCreateInput# TODO update the JSON string belowjson="{}"# create an instance of MetalGatewayElasticIpCreateInput from a JSON stringmetal_gateway_elastic_ip_create_input_instance=MetalGatewayElasticIpCreateInput.from_json(json)
# print the JSON string representation of the objectprint(MetalGatewayElasticIpCreateInput.to_json())
# convert the object into a dictmetal_gateway_elastic_ip_create_input_dict=metal_gateway_elastic_ip_create_input_instance.to_dict()
# create an instance of MetalGatewayElasticIpCreateInput from a dictmetal_gateway_elastic_ip_create_input_form_dict=metal_gateway_elastic_ip_create_input.from_dict(metal_gateway_elastic_ip_create_input_dict)