mirror of
https://github.com/thousandeyes/thousandeyes-sdk-python.git
synced 2025-12-06 06:26:51 +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
TagMatch
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| key | str | The name of the tag key to match. The key is invalid if it includes characters that are not allowed by the OpenTelemetry naming recommendations for attributes. | [optional] |
| value | str | The value of the tag to match | [optional] |
Example
from thousandeyes_sdk.streaming.models.tag_match import TagMatch
# TODO update the JSON string below
json = "{}"
# create an instance of TagMatch from a JSON string
tag_match_instance = TagMatch.from_json(json)
# print the JSON string representation of the object
print(TagMatch.to_json())
# convert the object into a dict
tag_match_dict = tag_match_instance.to_dict()
# create an instance of TagMatch from a dict
tag_match_from_dict = TagMatch.from_dict(tag_match_dict)