thousandeyes-sdk-python/thousandeyes-sdk-dashboards/docs/ApiTestTableData.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.5 KiB

ApiTestTableData

Data shown in a test table widget.

Properties

Name Type Description Notes
test_id str Identifier of the test. [optional]
test_name str Name of the test. [optional]
target str Configured target of the test. [optional]
test_type str Type of the test. [optional]
alert_count int Number of active alerts of the test. [optional]
is_shared bool Set to `true` if test is shared, `false` otherwise. [optional]
graphlets **List[ApiTestTableGraphletsData]** List of time series points for test metrics in the last 12 hours. [optional]

Example

from thousandeyes_sdk.dashboards.models.api_test_table_data import ApiTestTableData

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

# convert the object into a dict
api_test_table_data_dict = api_test_table_data_instance.to_dict()
# create an instance of ApiTestTableData from a dict
api_test_table_data_from_dict = ApiTestTableData.from_dict(api_test_table_data_dict)

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