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

40 lines
2.1 KiB
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# 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 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**](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)