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.28 KB

BgpDynamicNeighborCreateInput.md

File metadata and controls

32 lines (23 loc) · 1.28 KB

BgpDynamicNeighborCreateInput

Properties

Name Type Description Notes
bgp_neighbor_asn int The ASN of the dynamic BGP neighbor
bgp_neighbor_range str Network range of the dynamic BGP neighbor in CIDR format
href str [optional]
tags List[str] [optional]

Example

from equinix_metal.models.bgp_dynamic_neighbor_create_input import BgpDynamicNeighborCreateInput

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

# convert the object into a dict
bgp_dynamic_neighbor_create_input_dict = bgp_dynamic_neighbor_create_input_instance.to_dict()
# create an instance of BgpDynamicNeighborCreateInput from a dict
bgp_dynamic_neighbor_create_input_form_dict = bgp_dynamic_neighbor_create_input.from_dict(bgp_dynamic_neighbor_create_input_dict)

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