thousandeyes-sdk-python/agents_api/docs/AgentProxy.md
2023-12-11 09:29:15 +00:00

2.1 KiB
Raw 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 agents_api.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_form_dict = agent_proxy.from_dict(agent_proxy_dict)

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