thousandeyes-sdk-python/thousandeyes-sdk-streaming/docs/EndpointAgentTag.md
2026-05-14 15:43:12 +00:00

988 B

EndpointAgentTag

Endpoint Agent tag configuration.

Properties

Name Type Description Notes
id str The tag ID of Endpoint Agent tags.

Example

from thousandeyes_sdk.streaming.models.endpoint_agent_tag import EndpointAgentTag

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

# convert the object into a dict
endpoint_agent_tag_dict = endpoint_agent_tag_instance.to_dict()
# create an instance of EndpointAgentTag from a dict
endpoint_agent_tag_from_dict = EndpointAgentTag.from_dict(endpoint_agent_tag_dict)

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