HttpProxyConfigurationArgs

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

HTTP Proxy configuration for the VM.

Constructors

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

Properties

Link copied to clipboard
val httpProxy: Output<String>? = null

The HTTP proxy server endpoint to use.

Link copied to clipboard
val httpsProxy: Output<String>? = null

The HTTPS proxy server endpoint to use.

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

The endpoints that should not go through proxy.

Link copied to clipboard
val trustedCa: Output<String>? = null

Alternative CA cert to use for connecting to proxy servers.

Functions

Link copied to clipboard
open override fun toJava(): HttpProxyConfigurationArgs