![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azurenative.hybridcontainerservice.kotlin.inputs.HttpProxyConfigArgs.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-azure-native-kotlin Show documentation
Show all versions of pulumi-azure-native-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.azurenative.hybridcontainerservice.kotlin.inputs
import com.pulumi.azurenative.hybridcontainerservice.inputs.HttpProxyConfigArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
import kotlin.jvm.JvmName
/**
* Configurations for provisioning the cluster with HTTP proxy servers.
* @property httpProxy The HTTP proxy server endpoint to use.
* @property httpsProxy The HTTPS proxy server endpoint to use.
* @property noProxy The endpoints that should not go through proxy.
* @property password Password to use for connecting to proxy server
* @property trustedCa Alternative CA cert to use for connecting to proxy servers.
* @property username Username to use for connecting to proxy server
*/
public data class HttpProxyConfigArgs(
public val httpProxy: Output? = null,
public val httpsProxy: Output? = null,
public val noProxy: Output>? = null,
public val password: Output? = null,
public val trustedCa: Output? = null,
public val username: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azurenative.hybridcontainerservice.inputs.HttpProxyConfigArgs =
com.pulumi.azurenative.hybridcontainerservice.inputs.HttpProxyConfigArgs.builder()
.httpProxy(httpProxy?.applyValue({ args0 -> args0 }))
.httpsProxy(httpsProxy?.applyValue({ args0 -> args0 }))
.noProxy(noProxy?.applyValue({ args0 -> args0.map({ args0 -> args0 }) }))
.password(password?.applyValue({ args0 -> args0 }))
.trustedCa(trustedCa?.applyValue({ args0 -> args0 }))
.username(username?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [HttpProxyConfigArgs].
*/
@PulumiTagMarker
public class HttpProxyConfigArgsBuilder internal constructor() {
private var httpProxy: Output? = null
private var httpsProxy: Output? = null
private var noProxy: Output>? = null
private var password: Output? = null
private var trustedCa: Output? = null
private var username: Output? = null
/**
* @param value The HTTP proxy server endpoint to use.
*/
@JvmName("nhnbivyecjnnegyq")
public suspend fun httpProxy(`value`: Output) {
this.httpProxy = value
}
/**
* @param value The HTTPS proxy server endpoint to use.
*/
@JvmName("hovjwendjtksoxbo")
public suspend fun httpsProxy(`value`: Output) {
this.httpsProxy = value
}
/**
* @param value The endpoints that should not go through proxy.
*/
@JvmName("ojrkbtuadedegmot")
public suspend fun noProxy(`value`: Output>) {
this.noProxy = value
}
@JvmName("nkngwqnyoudsxfyq")
public suspend fun noProxy(vararg values: Output) {
this.noProxy = Output.all(values.asList())
}
/**
* @param values The endpoints that should not go through proxy.
*/
@JvmName("rudhjwhcsjsvlytg")
public suspend fun noProxy(values: List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy