thousandeyes-sdk-python/thousandeyes-sdk-streaming/docs/EndpointAgentLabel.md
Miguel Pragosa e4068d6142
Some checks failed
Python CI / build (push) Has been cancelled
[GitHub Bot] Generated python SDK (#119)
Co-authored-by: API Team <api-team@thousandeyes.com>
2025-12-02 11:32:03 +00:00

1.0 KiB

EndpointAgentLabel

Endpoint Agent label configuration.

Properties

Name Type Description Notes
id str The label ID of Endpoint Agent labels. [optional]

Example

from thousandeyes_sdk.streaming.models.endpoint_agent_label import EndpointAgentLabel

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

# convert the object into a dict
endpoint_agent_label_dict = endpoint_agent_label_instance.to_dict()
# create an instance of EndpointAgentLabel from a dict
endpoint_agent_label_from_dict = EndpointAgentLabel.from_dict(endpoint_agent_label_dict)

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