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

Latest commit

 

History

History
32 lines (23 loc) · 1.13 KB

VrfBGPNeighbors.md

File metadata and controls

32 lines (23 loc) · 1.13 KB

VrfBGPNeighbors

Properties

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]

Example

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]