thousandeyes-sdk-python/thousandeyes-sdk-event-detection/docs/AgentLocalEventDetail.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

44 lines
2.4 KiB
Markdown

# AgentLocalEventDetail
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**id** | **str** | A unique ID for each event. | [optional] [readonly]
**type_name** | **str** | Event type name. Examples include, Local Agent Issue, Network Path Issue, Network Outage, DNS Issue, Server Issue, and Proxy Issue. | [optional] [readonly]
**state** | [**EventState**](EventState.md) | | [optional]
**start_date** | **datetime** | The start date and time (in UTC, ISO 8601 format) when the event was first detected. | [optional] [readonly]
**end_date** | **datetime** | The end date and time (in UTC, ISO 8601 format) when the event was resolved (due to timeout). This value is populated for \&quot;ongoing\&quot; events. | [optional] [readonly]
**severity** | [**Severity**](Severity.md) | | [optional]
**aid** | **str** | A unique identifier associated with your account group. You can retrieve your &#x60;AccountGroupId&#x60; from the &#x60;/account-groups&#x60; endpoint. | [optional]
**summary** | **str** | A brief summary describing the cause of the event. | [optional] [readonly]
**affected_tests** | [**AffectedTests**](AffectedTests.md) | | [optional]
**affected_targets** | [**AffectedTargets**](AffectedTargets.md) | | [optional]
**affected_agents** | [**AffectedAgents**](AffectedAgents.md) | | [optional]
**cause** | **List[str]** | The cause of the error. | [optional]
**links** | [**SelfLinks**](SelfLinks.md) | | [optional]
**type** | **str** | Agent local event type. |
**grouping** | [**AgentLocalEventGrouping**](AgentLocalEventGrouping.md) | | [optional]
## Example
```python
from thousandeyes_sdk.event_detection.models.agent_local_event_detail import AgentLocalEventDetail
# TODO update the JSON string below
json = "{}"
# create an instance of AgentLocalEventDetail from a JSON string
agent_local_event_detail_instance = AgentLocalEventDetail.from_json(json)
# print the JSON string representation of the object
print(AgentLocalEventDetail.to_json())
# convert the object into a dict
agent_local_event_detail_dict = agent_local_event_detail_instance.to_dict()
# create an instance of AgentLocalEventDetail from a dict
agent_local_event_detail_from_dict = AgentLocalEventDetail.from_dict(agent_local_event_detail_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)