thousandeyes-sdk-python/thousandeyes-sdk-streaming/docs/ConnectedDevices.md
api-team-automation[bot] c6ae90df0d
Some checks failed
Python CI / build (push) Has been cancelled
[GitHub Bot] Generated python SDK (#181)
Co-authored-by: API Team <api-team@thousandeyes.com>
2026-08-06 14:10:18 +01:00

1.0 KiB

ConnectedDevices

Configuration for Connected Devices metric data in the stream integration.

Properties

Name Type Description Notes
enabled bool Flag to enable or disable Connected Devices data. [default to False]

Example

from thousandeyes_sdk.streaming.models.connected_devices import ConnectedDevices

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

# convert the object into a dict
connected_devices_dict = connected_devices_instance.to_dict()
# create an instance of ConnectedDevices from a dict
connected_devices_from_dict = ConnectedDevices.from_dict(connected_devices_dict)

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