thousandeyes-sdk-python/thousandeyes-sdk-agents/docs/AgentTag.md
Miguel Pragosa fa5af77369
Some checks failed
Python CI / build (push) Has been cancelled
[GitHub Bot] Generated python SDK (#149)
Co-authored-by: API Team <api-team@thousandeyes.com>
2026-04-30 11:18:18 +01:00

1.0 KiB

AgentTag

Properties

Name Type Description Notes
id str Tag Id. [optional]
key str Tag key, for example, &quot;Location&quot; or &quot;Department&quot;. [optional]
value str Tag value, for example, &quot;San Francisco&quot; or &quot;Engineering&quot;. [optional]

Example

from thousandeyes_sdk.agents.models.agent_tag import AgentTag

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

# convert the object into a dict
agent_tag_dict = agent_tag_instance.to_dict()
# create an instance of AgentTag from a dict
agent_tag_from_dict = AgentTag.from_dict(agent_tag_dict)

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