Name |
Type |
Description |
Notes |
href |
str |
|
[optional] |
peer_as |
int |
The ASN of the peer that advertised the prefix. |
[optional] |
peer_ip |
str |
|
[optional] |
state |
str |
The current status of the connection to the BGP peer. State is either up or down. |
[optional] |
from equinix_metal.models.vrf_bgp_neighbors import VrfBGPNeighbors
# TODO update the JSON string below
json = "{}"
# create an instance of VrfBGPNeighbors from a JSON string
vrf_bgp_neighbors_instance = VrfBGPNeighbors.from_json(json)
# print the JSON string representation of the object
print(VrfBGPNeighbors.to_json())
# convert the object into a dict
vrf_bgp_neighbors_dict = vrf_bgp_neighbors_instance.to_dict()
# create an instance of VrfBGPNeighbors from a dict
vrf_bgp_neighbors_form_dict = vrf_bgp_neighbors.from_dict(vrf_bgp_neighbors_dict)
[Back to Model list] [Back to API list] [Back to README]