Skip to content

Latest commit

 

History

History
62 lines (53 loc) · 2.71 KB

FindIPAddressById200Response.md

File metadata and controls

62 lines (53 loc) · 2.71 KB

FindIPAddressById200Response

Properties

Name Type Description Notes
address str [optional]
address_family int [optional]
assigned_to Href
cidr int [optional]
created_at datetime [optional]
enabled bool [optional]
gateway str [optional]
global_ip bool [optional]
href str [optional]
id str [optional]
manageable bool [optional]
management bool [optional]
metro Metro [optional]
netmask str [optional]
network str [optional]
next_hop str Only set when this is a Metal Gateway Elastic IP Assignment. The IP address within the Metal Gateway to which requests to the Elastic IP are forwarded. [optional]
parent_block ParentBlock [optional]
public bool [optional]
state str [optional]
addon bool [optional]
assignments List[Href] [optional]
available str [optional]
bill bool [optional]
customdata object [optional]
details str [optional]
facility IPReservationFacility [optional]
metal_gateway MetalGatewayLite [optional]
project Project [optional]
project_lite Project [optional]
requested_by Href [optional]
tags List[str] [optional]
type str
created_by Href [optional]
vrf Vrf

Example

from equinix_metal.models.find_ip_address_by_id200_response import FindIPAddressById200Response

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

# convert the object into a dict
find_ip_address_by_id200_response_dict = find_ip_address_by_id200_response_instance.to_dict()
# create an instance of FindIPAddressById200Response from a dict
find_ip_address_by_id200_response_form_dict = find_ip_address_by_id200_response.from_dict(find_ip_address_by_id200_response_dict)

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