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

Latest commit

 

History

History
33 lines (24 loc) · 1.04 KB

GlobalBgpRange.md

File metadata and controls

33 lines (24 loc) · 1.04 KB

GlobalBgpRange

Properties

Name Type Description Notes
address_family int [optional]
href str [optional]
id str [optional]
project Href [optional]
range str [optional]

Example

from equinix_metal.models.global_bgp_range import GlobalBgpRange

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

# convert the object into a dict
global_bgp_range_dict = global_bgp_range_instance.to_dict()
# create an instance of GlobalBgpRange from a dict
global_bgp_range_form_dict = global_bgp_range.from_dict(global_bgp_range_dict)

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