thousandeyes-sdk-python/thousandeyes-sdk-tests/docs/TestMonitorsProperties.md
Jack Browne 92b9a0126c
CP-2126 Refactor HTTP client into shared package (#5)
* CP-2126 Refactor HTTP client into shared package

* CP-2126 Regenerate Python SDK
2024-05-23 11:57:23 +01:00

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)

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