mirror of
https://github.com/thousandeyes/thousandeyes-sdk-python.git
synced 2026-09-19 08:03:56 +00:00
Some checks failed
Python CI / build (push) Has been cancelled
Co-authored-by: API Team <api-team@thousandeyes.com>
31 lines
1.0 KiB
Markdown
31 lines
1.0 KiB
Markdown
# 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
|
|
|
|
```python
|
|
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]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
|
|
|
|