![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azurenative.security.kotlin.inputs.ProxyServerPropertiesArgs.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.security.kotlin.inputs
import com.pulumi.azurenative.security.inputs.ProxyServerPropertiesArgs.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
/**
* For a non-Azure machine that is not connected directly to the internet, specify a proxy server that the non-Azure machine can use.
* @property ip Proxy server IP
* @property port Proxy server port
*/
public data class ProxyServerPropertiesArgs(
public val ip: Output? = null,
public val port: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azurenative.security.inputs.ProxyServerPropertiesArgs =
com.pulumi.azurenative.security.inputs.ProxyServerPropertiesArgs.builder()
.ip(ip?.applyValue({ args0 -> args0 }))
.port(port?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [ProxyServerPropertiesArgs].
*/
@PulumiTagMarker
public class ProxyServerPropertiesArgsBuilder internal constructor() {
private var ip: Output? = null
private var port: Output? = null
/**
* @param value Proxy server IP
*/
@JvmName("xdahydlkjxsqbbat")
public suspend fun ip(`value`: Output) {
this.ip = value
}
/**
* @param value Proxy server port
*/
@JvmName("gvwwcxgtxdaurinr")
public suspend fun port(`value`: Output) {
this.port = value
}
/**
* @param value Proxy server IP
*/
@JvmName("iaithjapacyvpwcw")
public suspend fun ip(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.ip = mapped
}
/**
* @param value Proxy server port
*/
@JvmName("fsdbomirpgxdnbwa")
public suspend fun port(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.port = mapped
}
internal fun build(): ProxyServerPropertiesArgs = ProxyServerPropertiesArgs(
ip = ip,
port = port,
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy