Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.2 KB

File metadata and controls

32 lines (23 loc) · 1.2 KB

BgpPeerGroupPatch

Update a BGP Peer Group.

Properties

Name Type Description Notes
asn int The BGP Peer Group ASN. [optional]
password str The BGP Peer Group password. [optional]
advertised_routes str The Advertised routes for the BGP Peer Group. Can have one of the following values: `DEFAULT` and `NONE`. [optional]

Example

from pnap_network_api.models.bgp_peer_group_patch import BgpPeerGroupPatch

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

# convert the object into a dict
bgp_peer_group_patch_dict = bgp_peer_group_patch_instance.to_dict()
# create an instance of BgpPeerGroupPatch from a dict
bgp_peer_group_patch_from_dict = BgpPeerGroupPatch.from_dict(bgp_peer_group_patch_dict)

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