appliance techpreview networking proxy: proxy config test
proxy_config_test structure Structure that defines proxy configuration.Representations:
{
"password": "secret string",
"port": 1,
"protocol": "ftp",
"server": "string",
"testhost": "string",
"username": "string"
}
"password": "secret string",
"port": 1,
"protocol": "ftp",
"server": "string",
"testhost": "string",
"username": "string"
}
<?xml version="1.0" ?>
<ns0:ProxyConfigTest xmlns:ns0="http://vmware.com/appliance/techpreview/networking/proxy" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<port>1</port>
<username>string</username>
<protocol>ftp</protocol>
<server>string</server>
<testhost>string</testhost>
<password>secret string</password>
</ns0:ProxyConfigTest>
<ns0:ProxyConfigTest xmlns:ns0="http://vmware.com/appliance/techpreview/networking/proxy" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<port>1</port>
<username>string</username>
<protocol>ftp</protocol>
<server>string</server>
<testhost>string</testhost>
<password>secret string</password>
</ns0:ProxyConfigTest>
Attributes:
| Name | Type | Description |
|---|---|---|
| Required | ||
| protocol | string | protocol being configured. Defines different proxy protocols Value is one of: ftp: proxy configuration for ftp. http: proxy configuration for http. https: proxy configuration for https. |
| server | string | hostname or ip of proxy server |
| port | long | port to connect to the proxy server on. A value of -1 indicates that the default port is being used. |
| username | string | username for proxy server. |
| password | secret | password for proxy server. |
| testhost | string | Verify that a hostname (www.vmware.com) or IPv4 or Ipv6 address of the testhost is accessible through proxy. |