mirror of
https://github.com/thousandeyes/thousandeyes-sdk-python.git
synced 2025-12-06 14:36:50 +00:00
35 lines
1.6 KiB
Markdown
35 lines
1.6 KiB
Markdown
# PutStream
|
|
|
|
|
|
## Properties
|
|
|
|
Name | Type | Description | Notes
|
|
------------ | ------------- | ------------- | -------------
|
|
**custom_headers** | **Dict[str, str]** | Custom headers. **Note**: When using the `splunk-hec` `type`, the `customHeaders` must contain just one element with the key `token` and the value of the *Splunk HEC Token*. | [optional]
|
|
**tag_match** | [**List[TagMatch]**](TagMatch.md) | A collection of tags that determine what tests are included in the data stream. These tag values are also included as attributes in the data stream metrics. | [optional]
|
|
**test_match** | [**List[TestMatch]**](TestMatch.md) | A collection of tests to be included in the data stream. | [optional]
|
|
**enabled** | **bool** | Flag to enable or disable the stream integration. | [optional]
|
|
**filters** | [**Filters**](Filters.md) | | [optional]
|
|
**exporter_config** | [**ExporterConfig**](ExporterConfig.md) | | [optional]
|
|
|
|
## Example
|
|
|
|
```python
|
|
from thousandeyes_sdk.streaming.models.put_stream import PutStream
|
|
|
|
# TODO update the JSON string below
|
|
json = "{}"
|
|
# create an instance of PutStream from a JSON string
|
|
put_stream_instance = PutStream.from_json(json)
|
|
# print the JSON string representation of the object
|
|
print(PutStream.to_json())
|
|
|
|
# convert the object into a dict
|
|
put_stream_dict = put_stream_instance.to_dict()
|
|
# create an instance of PutStream from a dict
|
|
put_stream_from_dict = PutStream.from_dict(put_stream_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)
|
|
|
|
|