thousandeyes-sdk-python/thousandeyes-sdk-event-detection/docs/ApiAffectedAgent.md
2024-08-11 09:06:01 +00:00

37 lines
1.7 KiB
Markdown

# ApiAffectedAgent
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**agent_id** | **str** | The ID of the virtual agent. | [optional] [readonly]
**type** | [**CloudEnterpriseAgentType**](CloudEnterpriseAgentType.md) | | [optional]
**name** | **str** | The name of the agent as defined in settings. | [optional] [readonly]
**location** | **str** | The name of the agent's location. | [optional] [readonly]
**country_code** | **str** | The country code of the agent's location . | [optional] [readonly]
**affected_target_ids** | **List[str]** | An array of unique target IDs that contributed data points which generated the signal for the event. | [optional]
**affected_test_ids** | **List[str]** | An array of unique agent IDs that contributed data points which generated the signal for the event. | [optional]
**links** | [**AgentLinks**](AgentLinks.md) | | [optional]
## Example
```python
from thousandeyes_sdk.event_detection.models.api_affected_agent import ApiAffectedAgent
# TODO update the JSON string below
json = "{}"
# create an instance of ApiAffectedAgent from a JSON string
api_affected_agent_instance = ApiAffectedAgent.from_json(json)
# print the JSON string representation of the object
print(ApiAffectedAgent.to_json())
# convert the object into a dict
api_affected_agent_dict = api_affected_agent_instance.to_dict()
# create an instance of ApiAffectedAgent from a dict
api_affected_agent_from_dict = ApiAffectedAgent.from_dict(api_affected_agent_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)