mirror of
https://github.com/thousandeyes/thousandeyes-sdk-python.git
synced 2025-12-06 06:26:51 +00:00
1.5 KiB
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 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)