mirror of
https://github.com/thousandeyes/thousandeyes-sdk-python.git
synced 2025-12-06 22:36:52 +00:00
40 lines
2.1 KiB
Markdown
40 lines
2.1 KiB
Markdown
# AgentProxy
|
||
|
||
|
||
## Properties
|
||
|
||
Name | Type | Description | Notes
|
||
------------ | ------------- | ------------- | -------------
|
||
**aid** | **str** | Account id that this proxy configuration belongs to | [optional]
|
||
**auth_type** | [**ProxyAuthType**](ProxyAuthType.md) | | [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 agent’s 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**](ProxyType.md) | | [optional]
|
||
**user** | **str** | Username for proxy authentication. | [optional]
|
||
|
||
## Example
|
||
|
||
```python
|
||
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]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
||
|
||
|