ManagedClusterHTTPProxyConfigResponse

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

Configurations for provisioning the cluster with HTTP proxy servers.

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

HTTP proxy server endpoint to use.

Link copied to clipboard
val httpsProxy: String? = null

HTTPS proxy server endpoint to use.

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

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.