mirror of
https://github.com/thousandeyes/thousandeyes-sdk-python.git
synced 2026-08-04 08:56:50 +00:00
Some checks failed
Python CI / build (push) Has been cancelled
Co-authored-by: API Team <api-team@thousandeyes.com>
1.6 KiB
1.6 KiB
EndpointAgentLogItem
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| id | str | Unique ID of the log item. | [optional] [readonly] |
| agent_log_item_type | EndpointAgentLogItemType | [optional] | |
| timestamp_ms | int | Time when the log item was recorded, in milliseconds since the Unix epoch. | [optional] [readonly] |
| wifi_log_item | EndpointWifiLogItem | [optional] | |
| vpn_log_item | EndpointVpnLogItem | [optional] | |
| online_offline_log_item | EndpointOnlineOfflineLogItem | [optional] | |
| state_changes_log_item | EndpointStateChangesLogItem | [optional] |
Example
from thousandeyes_sdk.endpoint_agents.models.endpoint_agent_log_item import EndpointAgentLogItem
# TODO update the JSON string below
json = "{}"
# create an instance of EndpointAgentLogItem from a JSON string
endpoint_agent_log_item_instance = EndpointAgentLogItem.from_json(json)
# print the JSON string representation of the object
print(EndpointAgentLogItem.to_json())
# convert the object into a dict
endpoint_agent_log_item_dict = endpoint_agent_log_item_instance.to_dict()
# create an instance of EndpointAgentLogItem from a dict
endpoint_agent_log_item_from_dict = EndpointAgentLogItem.from_dict(endpoint_agent_log_item_dict)