mirror of
https://github.com/thousandeyes/thousandeyes-sdk-python.git
synced 2025-12-06 06:26:51 +00:00
1.5 KiB
1.5 KiB
EnterpriseAgentResponseExpands
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| tests | **List[SimpleTest]** | List of tests. See `/tests` for more information. | [optional] |
| notification_rules | **List[NotificationRules]** | List of notification rule objects configured on agent | [optional] |
| labels | **List[AgentLabel]** | List of labels. See `/labels` for more information. | [optional] [readonly] |
Example
from thousandeyes_sdk.agents.models.enterprise_agent_response_expands import EnterpriseAgentResponseExpands
# TODO update the JSON string below
json = "{}"
# create an instance of EnterpriseAgentResponseExpands from a JSON string
enterprise_agent_response_expands_instance = EnterpriseAgentResponseExpands.from_json(json)
# print the JSON string representation of the object
print(EnterpriseAgentResponseExpands.to_json())
# convert the object into a dict
enterprise_agent_response_expands_dict = enterprise_agent_response_expands_instance.to_dict()
# create an instance of EnterpriseAgentResponseExpands from a dict
enterprise_agent_response_expands_from_dict = EnterpriseAgentResponseExpands.from_dict(enterprise_agent_response_expands_dict)