Skip to content

Latest commit

 

History

History
38 lines (29 loc) · 1.75 KB

VrfMetalGateway.md

File metadata and controls

38 lines (29 loc) · 1.75 KB

VrfMetalGateway

Properties

Name Type Description Notes
created_at datetime [optional]
created_by Href [optional]
href str [optional]
id str [optional]
ip_reservation VrfIpReservation [optional]
project Project [optional]
state str The current state of the Metal Gateway. 'Ready' indicates the gateway record has been configured, but is currently not active on the network. 'Active' indicates the gateway has been configured on the network. 'Deleting' is a temporary state used to indicate that the gateway is in the process of being un-configured from the network, after which the gateway record will be deleted. [optional]
updated_at datetime [optional]
virtual_network VirtualNetwork [optional]
vrf Vrf [optional]

Example

from equinix_metal.models.vrf_metal_gateway import VrfMetalGateway

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

# convert the object into a dict
vrf_metal_gateway_dict = vrf_metal_gateway_instance.to_dict()
# create an instance of VrfMetalGateway from a dict
vrf_metal_gateway_form_dict = vrf_metal_gateway.from_dict(vrf_metal_gateway_dict)

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