mirror of
https://github.com/thousandeyes/thousandeyes-sdk-python.git
synced 2025-12-06 06:26:51 +00:00
1.4 KiB
1.4 KiB
TestMonitorsProperties
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| bgp_measurements | bool | Set to `true` to enable bgp measurements. | [optional] [default to True] |
| use_public_bgp | bool | Indicate if all available public BGP monitors should be used, when ommited defaults to `bgpMeasurements` value. | [optional] [default to True] |
| monitors | **List[Monitor]** | Contains list of enabled BGP monitors. | [optional] [readonly] |
Example
from thousandeyes_sdk.tests.models.test_monitors_properties import TestMonitorsProperties
# TODO update the JSON string below
json = "{}"
# create an instance of TestMonitorsProperties from a JSON string
test_monitors_properties_instance = TestMonitorsProperties.from_json(json)
# print the JSON string representation of the object
print(TestMonitorsProperties.to_json())
# convert the object into a dict
test_monitors_properties_dict = test_monitors_properties_instance.to_dict()
# create an instance of TestMonitorsProperties from a dict
test_monitors_properties_from_dict = TestMonitorsProperties.from_dict(test_monitors_properties_dict)