thousandeyes-sdk-python/dashboards_api/docs/ApiTestTableData.md
2023-12-11 09:29:15 +00: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 dashboards_api.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_form_dict = api_test_table_data.from_dict(api_test_table_data_dict)

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