thousandeyes-sdk-python/thousandeyes-sdk-event-detection/docs/ApiAffectedTest.md
Shahid Hussain Khan 09e9385636
Some checks failed
Python CI / build (push) Has been cancelled
Add Event detection API (#43)
* [GitHub Bot] Generated python SDK

* Updated README

---------

Co-authored-by: API Team <api-team@thousandeyes.com>
Co-authored-by: Miguel Pragosa <mpragosa@thousandeyes.com>
2024-08-11 10:21:46 +01:00

35 lines
1.5 KiB
Markdown

# ApiAffectedTest
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**test_id** | **str** | The ID of the affected test. | [optional] [readonly]
**test_type** | [**TestType**](TestType.md) | | [optional]
**name** | **str** | The test name as configured in the test settings. | [optional] [readonly]
**affected_target_ids** | **List[str]** | An array of unique target IDs contributed data points which generated the signal for the event. | [optional]
**affected_agent_ids** | **List[str]** | An array of unique agent IDs that contributed data points which generated the signal for the event. | [optional]
**links** | [**TestLinks**](TestLinks.md) | | [optional]
## Example
```python
from thousandeyes_sdk.event_detection.models.api_affected_test import ApiAffectedTest
# TODO update the JSON string below
json = "{}"
# create an instance of ApiAffectedTest from a JSON string
api_affected_test_instance = ApiAffectedTest.from_json(json)
# print the JSON string representation of the object
print(ApiAffectedTest.to_json())
# convert the object into a dict
api_affected_test_dict = api_affected_test_instance.to_dict()
# create an instance of ApiAffectedTest from a dict
api_affected_test_from_dict = ApiAffectedTest.from_dict(api_affected_test_dict)
```
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)