mirror of
https://github.com/thousandeyes/thousandeyes-sdk-python.git
synced 2026-08-04 00:46:52 +00:00
45 lines
2.5 KiB
Markdown
45 lines
2.5 KiB
Markdown
# WirelessEventDetail
|
|
|
|
|
|
## 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 null for \"ongoing\" (active) events and is populated once the event is resolved. | [optional] [readonly]
|
|
**severity** | [**EventAlertSeverity**](EventAlertSeverity.md) | | [optional]
|
|
**aid** | **str** | A unique identifier associated with your account group. You can retrieve your `AccountGroupId` from the `/account-groups` endpoint. | [optional]
|
|
**summary** | **str** | A brief summary describing the cause of the event. | [optional] [readonly]
|
|
**agent_type** | [**EventAgentType**](EventAgentType.md) | | [optional]
|
|
**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** | Wireless event type. |
|
|
**grouping** | [**WirelessEventGrouping**](WirelessEventGrouping.md) | | [optional]
|
|
|
|
## Example
|
|
|
|
```python
|
|
from thousandeyes_sdk.event_detection.models.wireless_event_detail import WirelessEventDetail
|
|
|
|
# TODO update the JSON string below
|
|
json = "{}"
|
|
# create an instance of WirelessEventDetail from a JSON string
|
|
wireless_event_detail_instance = WirelessEventDetail.from_json(json)
|
|
# print the JSON string representation of the object
|
|
print(WirelessEventDetail.to_json())
|
|
|
|
# convert the object into a dict
|
|
wireless_event_detail_dict = wireless_event_detail_instance.to_dict()
|
|
# create an instance of WirelessEventDetail from a dict
|
|
wireless_event_detail_from_dict = WirelessEventDetail.from_dict(wireless_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)
|
|
|
|
|