ProxyConfiguration

ProxyConfiguration
ProxyConfiguration

Proxy Configuration

JSON Example
{
    "isConfigured": false,
    "isEnabled": false,
    "host": "10.0.0.250",
    "port": 3128,
    "transferProtocol": "One among: HTTP, HTTPS",
    "username": "string",
    "password": "string",
    "isAuthenticated": false
}
boolean
isConfigured
Optional

Defines if the proxy is configured.

boolean
isEnabled
Optional

Defines if the proxy configuration is enabled. To disable the proxy, this should be set to false.

string
host
Optional

IP address/FQDN of proxy server. This must be set if proxy is enabled.

integer As int32 As int32
port
Optional

Port of proxy server. This must be set if proxy is enabled.

string
transferProtocol
Optional

Proxy transfer protocol, default value is HTTP

Possible values are : HTTP, HTTPS,
string
username
Optional

User name to connect

string
password
Optional

User password to connect, will return null on reading

boolean
isAuthenticated
Optional

If proxy authentication is required, isAuthenticated must be enabled and username and password should be set.