Skip to content

Latest commit

 

History

History
37 lines (28 loc) · 1.98 KB

File metadata and controls

37 lines (28 loc) · 1.98 KB

MetricsTestResultItem

A description of the Synthetic test associated with the result item. This information will be included if the request was grouped by synthetic.testId or if includeAggregatedTestId was true on the request.

Properties

Name Type Description Notes
application_id str An identifier of an application associated with the Synthetic test. This field is deprecated and will be replace by the applicationIds field. [optional]
application_ids List[str] A list of the applications associated with the Synthetic test. [optional]
location_id List[str] A list of the locations associated with the Synthetic test. [optional]
mobile_application_ids List[str] A list of the mobile applications associated with the Synthetic test. [optional]
service_id str A service associated with the Synthetic test. [optional]
test_id str The testId for the Synthetic test.
test_name str The Synthetic test's name. [optional]
website_ids List[str] A list of the websites associated with the Synthetic test. [optional]

Example

from instana_client.models.metrics_test_result_item import MetricsTestResultItem

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

# convert the object into a dict
metrics_test_result_item_dict = metrics_test_result_item_instance.to_dict()
# create an instance of MetricsTestResultItem from a dict
metrics_test_result_item_from_dict = MetricsTestResultItem.from_dict(metrics_test_result_item_dict)

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