thousandeyes-sdk-python/thousandeyes-sdk-streaming/docs/InputConfigMetric.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

InputConfigMetric

Configuration for metric input data in the stream integration.

Properties

Name Type Description Notes
connected_devices ConnectedDevices [optional]

Example

from thousandeyes_sdk.streaming.models.input_config_metric import InputConfigMetric

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

# convert the object into a dict
input_config_metric_dict = input_config_metric_instance.to_dict()
# create an instance of InputConfigMetric from a dict
input_config_metric_from_dict = InputConfigMetric.from_dict(input_config_metric_dict)

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