appliance techpreview networking proxy: proxy config
proxy_config
structure Structure that defines proxy configuration.Representations:
{
"password": "secret string",
"port": 1,
"protocol": "ftp",
"server": "string",
"username": "string"
}
"password": "secret string",
"port": 1,
"protocol": "ftp",
"server": "string",
"username": "string"
}
<?xml version="1.0" ?>
<ns0:ProxyConfig 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>
<password>secret string</password>
</ns0:ProxyConfig>
<ns0:ProxyConfig 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>
<password>secret string</password>
</ns0:ProxyConfig>
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. |