com.pulumi.azure.containerservice.kotlin.outputs.KubernetesClusterHttpProxyConfig.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-azure-kotlin Show documentation
Show all versions of pulumi-azure-kotlin Show documentation
Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azure.containerservice.kotlin.outputs
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
/**
*
* @property httpProxy The proxy address to be used when communicating over HTTP.
* @property httpsProxy The proxy address to be used when communicating over HTTPS.
* @property noProxies
* @property trustedCa The base64 encoded alternative CA certificate content in PEM format.
*/
public data class KubernetesClusterHttpProxyConfig(
public val httpProxy: String? = null,
public val httpsProxy: String? = null,
public val noProxies: List? = null,
public val trustedCa: String? = null,
) {
public companion object {
public
fun toKotlin(javaType: com.pulumi.azure.containerservice.outputs.KubernetesClusterHttpProxyConfig):
KubernetesClusterHttpProxyConfig = KubernetesClusterHttpProxyConfig(
httpProxy = javaType.httpProxy().map({ args0 -> args0 }).orElse(null),
httpsProxy = javaType.httpsProxy().map({ args0 -> args0 }).orElse(null),
noProxies = javaType.noProxies().map({ args0 -> args0 }),
trustedCa = javaType.trustedCa().map({ args0 -> args0 }).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy