![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azurenative.scvmm.kotlin.inputs.HttpProxyConfigurationArgs.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.scvmm.kotlin.inputs
import com.pulumi.azurenative.scvmm.inputs.HttpProxyConfigurationArgs.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.jvm.JvmName
/**
* HTTP Proxy configuration for the VM.
* @property httpsProxy Gets or sets httpsProxy url.
*/
public data class HttpProxyConfigurationArgs(
public val httpsProxy: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azurenative.scvmm.inputs.HttpProxyConfigurationArgs =
com.pulumi.azurenative.scvmm.inputs.HttpProxyConfigurationArgs.builder()
.httpsProxy(httpsProxy?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [HttpProxyConfigurationArgs].
*/
@PulumiTagMarker
public class HttpProxyConfigurationArgsBuilder internal constructor() {
private var httpsProxy: Output? = null
/**
* @param value Gets or sets httpsProxy url.
*/
@JvmName("vbyphpnfgnjteqtq")
public suspend fun httpsProxy(`value`: Output) {
this.httpsProxy = value
}
/**
* @param value Gets or sets httpsProxy url.
*/
@JvmName("odibyvjoihxjooff")
public suspend fun httpsProxy(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.httpsProxy = mapped
}
internal fun build(): HttpProxyConfigurationArgs = HttpProxyConfigurationArgs(
httpsProxy = httpsProxy,
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy