mirror of
https://github.com/thousandeyes/thousandeyes-sdk-python.git
synced 2026-08-04 00:46:52 +00:00
Some checks failed
Python CI / build (push) Has been cancelled
Co-authored-by: API Team <api-team@thousandeyes.com>
1.5 KiB
1.5 KiB
EndpointRealUserTest
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| profile_id | str | Unique ID of the monitoring profile. | [readonly] |
| aid | str | A unique identifier associated with your account group. You can retrieve your `AccountGroupId` from the `/account-groups` endpoint. | |
| name | str | Monitoring profile name. | [readonly] |
| included_domains | List[str] | Domains included in real user monitoring. | |
| excluded_domains | List[str] | Domains excluded from real user monitoring. | |
| monitoring_settings | EndpointMonitoringSettings |
Example
from thousandeyes_sdk.endpoint_tests.models.endpoint_real_user_test import EndpointRealUserTest
# TODO update the JSON string below
json = "{}"
# create an instance of EndpointRealUserTest from a JSON string
endpoint_real_user_test_instance = EndpointRealUserTest.from_json(json)
# print the JSON string representation of the object
print(EndpointRealUserTest.to_json())
# convert the object into a dict
endpoint_real_user_test_dict = endpoint_real_user_test_instance.to_dict()
# create an instance of EndpointRealUserTest from a dict
endpoint_real_user_test_from_dict = EndpointRealUserTest.from_dict(endpoint_real_user_test_dict)