Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.19 KB

File metadata and controls

33 lines (24 loc) · 1.19 KB

BgpIpPrefix

The BGP IP Prefix.

Properties

Name Type Description Notes
ip_allocation_id str IP allocation ID.
cidr str The IP block in CIDR format, dependent on IP version.
ip_version str The IP block version.
status str The BGP IP Prefix status. Can have one of the following values: `PENDING`, `BUSY`, `READY`, `ERROR` and `DELETING`.

Example

from pnap_network_api.models.bgp_ip_prefix import BgpIpPrefix

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

# convert the object into a dict
bgp_ip_prefix_dict = bgp_ip_prefix_instance.to_dict()
# create an instance of BgpIpPrefix from a dict
bgp_ip_prefix_from_dict = BgpIpPrefix.from_dict(bgp_ip_prefix_dict)

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