Name |
Type |
Description |
Notes |
created_at |
datetime |
|
[optional] |
gateway_address |
str |
The gateway address with subnet CIDR value for this Metal Gateway. For example, a Metal Gateway using an IP reservation with block 10.1.2.0/27 would have a gateway address of 10.1.2.1/27. |
[optional] |
href |
str |
|
[optional] |
id |
str |
|
[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] |
vlan |
int |
The VLAN id of the Virtual Network record associated to this Metal Gateway. |
[optional] |
from equinix_metal.models.metal_gateway_lite import MetalGatewayLite
# TODO update the JSON string below
json = "{}"
# create an instance of MetalGatewayLite from a JSON string
metal_gateway_lite_instance = MetalGatewayLite.from_json(json)
# print the JSON string representation of the object
print(MetalGatewayLite.to_json())
# convert the object into a dict
metal_gateway_lite_dict = metal_gateway_lite_instance.to_dict()
# create an instance of MetalGatewayLite from a dict
metal_gateway_lite_form_dict = metal_gateway_lite.from_dict(metal_gateway_lite_dict)
[Back to Model list] [Back to API list] [Back to README]