thousandeyes-sdk-python/thousandeyes-sdk-endpoint-tests/docs/EndpointRealUserTest.md
2026-07-13 08:12:42 +00:00

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)

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