Skip to content
This repository has been archived by the owner on Dec 23, 2024. It is now read-only.

Latest commit

 

History

History
33 lines (24 loc) · 1.62 KB

MetalGatewayElasticIpCreateInput.md

File metadata and controls

33 lines (24 loc) · 1.62 KB

MetalGatewayElasticIpCreateInput

Properties

Name Type Description Notes
address str 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

from equinix_metal.models.metal_gateway_elastic_ip_create_input import MetalGatewayElasticIpCreateInput

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

# convert the object into a dict
metal_gateway_elastic_ip_create_input_dict = metal_gateway_elastic_ip_create_input_instance.to_dict()
# create an instance of MetalGatewayElasticIpCreateInput from a dict
metal_gateway_elastic_ip_create_input_form_dict = metal_gateway_elastic_ip_create_input.from_dict(metal_gateway_elastic_ip_create_input_dict)

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