thousandeyes-sdk-python/thousandeyes-sdk-event-detection/docs/EventApiAffectedAgent.md
2024-09-09 13:37:12 +00:00

1.8 KiB

EventApiAffectedAgent

Properties

Name Type Description Notes
agent_id str The ID of the virtual agent. [optional] [readonly]
type CloudEnterpriseAgentType [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 [optional]

Example

from thousandeyes_sdk.event_detection.models.event_api_affected_agent import EventApiAffectedAgent

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

# convert the object into a dict
event_api_affected_agent_dict = event_api_affected_agent_instance.to_dict()
# create an instance of EventApiAffectedAgent from a dict
event_api_affected_agent_from_dict = EventApiAffectedAgent.from_dict(event_api_affected_agent_dict)

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