thousandeyes-sdk-python/thousandeyes-sdk-streaming/docs/PutStream.md
Jack Browne 92b9a0126c
CP-2126 Refactor HTTP client into shared package (#5)
* CP-2126 Refactor HTTP client into shared package

* CP-2126 Regenerate Python SDK
2024-05-23 11:57:23 +01:00

1.2 KiB

PutStream

Properties

Name Type Description Notes
custom_headers Dict[str, str] Custom headers [optional]
tag_match **List[TagMatch]** 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]
enabled bool Flag to enable or disable the stream integration. [optional]

Example

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] [Back to API list] [Back to README]