mirror of
https://github.com/thousandeyes/thousandeyes-sdk-python.git
synced 2025-12-05 23:45:30 +00:00
Some checks failed
Python CI / build (push) Has been cancelled
Co-authored-by: API Team <api-team@thousandeyes.com>
1.1 KiB
1.1 KiB
ExporterConfig
Capability to set exporter configuration.
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| splunk_hec | ExporterConfigSplunkHec | [optional] | |
| authorization | ExporterConfigAuthorization | [optional] |
Example
from thousandeyes_sdk.streaming.models.exporter_config import ExporterConfig
# TODO update the JSON string below
json = "{}"
# create an instance of ExporterConfig from a JSON string
exporter_config_instance = ExporterConfig.from_json(json)
# print the JSON string representation of the object
print(ExporterConfig.to_json())
# convert the object into a dict
exporter_config_dict = exporter_config_instance.to_dict()
# create an instance of ExporterConfig from a dict
exporter_config_from_dict = ExporterConfig.from_dict(exporter_config_dict)