mirror of
https://github.com/thousandeyes/thousandeyes-sdk-python.git
synced 2026-08-04 00:46:52 +00:00
Some checks failed
Python CI / build (push) Has been cancelled
Co-authored-by: API Team <api-team@thousandeyes.com>
988 B
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)