Create a BGP Peer Group.
| Name | Type | Description | Notes |
|---|---|---|---|
| location | str | The BGP Peer Group location. Can have one of the following values: `PHX`, `ASH`, `SGP`, `NLD`, `CHI` and `SEA`. | |
| asn | int | The BGP Peer Group ASN. | [default to 65401] |
| 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`. | [default to 'NONE'] |
from pnap_network_api.models.bgp_peer_group_create import BgpPeerGroupCreate
# TODO update the JSON string below
json = "{}"
# create an instance of BgpPeerGroupCreate from a JSON string
bgp_peer_group_create_instance = BgpPeerGroupCreate.from_json(json)
# print the JSON string representation of the object
print(BgpPeerGroupCreate.to_json())
# convert the object into a dict
bgp_peer_group_create_dict = bgp_peer_group_create_instance.to_dict()
# create an instance of BgpPeerGroupCreate from a dict
bgp_peer_group_create_from_dict = BgpPeerGroupCreate.from_dict(bgp_peer_group_create_dict)