thousandeyes-sdk-python/thousandeyes-sdk-agents/docs/AgentProxy.md
Jack Browne 92b9a0126c
CP-2126 Refactor HTTP client into shared package (#5)
* CP-2126 Refactor HTTP client into shared package

* CP-2126 Regenerate Python SDK
2024-05-23 11:57:23 +01:00

2.1 KiB
Raw Permalink Blame History

AgentProxy

Properties

Name Type Description Notes
aid str Account id that this proxy configuration belongs to [optional]
auth_type ProxyAuthType [optional]
bypass_list List[str] A list of hostnames, network prefixes, or wildcards used to determine which test targets should not be proxied. If all tests should be proxied, leave empty. [optional]
last_modified datetime Last modification timestamp of the proxy. Expressed in UTC (ISO date-time format). [optional]
location str The location of the proxy. If proxyType is `static` use the format `hostname:port`. If location is `pac`, then specify the URL where the PAC file can be obtained. [optional]
is_local_configured bool Set to `true` if this proxy configuration comes from the agents config file. Specify `false` if the proxy configuration was created in the ThousandEyes application. [optional]
name str Expression of agent notification rule. [optional]
password str Password for proxy authentication [optional]
proxy_id str Agent proxy's unique ID. [optional]
type ProxyType [optional]
user str Username for proxy authentication. [optional]

Example

from thousandeyes_sdk.agents.models.agent_proxy import AgentProxy

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

# convert the object into a dict
agent_proxy_dict = agent_proxy_instance.to_dict()
# create an instance of AgentProxy from a dict
agent_proxy_from_dict = AgentProxy.from_dict(agent_proxy_dict)

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