HttpProxyConfigurationResponse

data class HttpProxyConfigurationResponse(val httpProxy: String? = null, val httpsProxy: String? = null, val noProxy: List<String>? = null, val trustedCa: String? = null)

HTTP Proxy configuration for the VM.

Constructors

Link copied to clipboard
constructor(httpProxy: String? = null, httpsProxy: String? = null, noProxy: List<String>? = null, trustedCa: String? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val httpProxy: String? = null

The HTTP proxy server endpoint to use.

Link copied to clipboard
val httpsProxy: String? = null

The HTTPS proxy server endpoint to use.

Link copied to clipboard
val noProxy: List<String>? = null

The endpoints that should not go through proxy.

Link copied to clipboard
val trustedCa: String? = null

Alternative CA cert to use for connecting to proxy servers.