All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.cloudflare.kotlin.inputs.ZeroTrustGatewayPolicyRuleSettingsL4overrideArgs.kt Maven / Gradle / Ivy

Go to download

Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.

The newest version!
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.cloudflare.kotlin.inputs

import com.pulumi.cloudflare.inputs.ZeroTrustGatewayPolicyRuleSettingsL4overrideArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiNullFieldException
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.Int
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName

/**
 *
 * @property ip Override IP to forward traffic to.
 * @property port Override Port to forward traffic to.
 */
public data class ZeroTrustGatewayPolicyRuleSettingsL4overrideArgs(
    public val ip: Output,
    public val port: Output,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.cloudflare.inputs.ZeroTrustGatewayPolicyRuleSettingsL4overrideArgs =
        com.pulumi.cloudflare.inputs.ZeroTrustGatewayPolicyRuleSettingsL4overrideArgs.builder()
            .ip(ip.applyValue({ args0 -> args0 }))
            .port(port.applyValue({ args0 -> args0 })).build()
}

/**
 * Builder for [ZeroTrustGatewayPolicyRuleSettingsL4overrideArgs].
 */
@PulumiTagMarker
public class ZeroTrustGatewayPolicyRuleSettingsL4overrideArgsBuilder internal constructor() {
    private var ip: Output? = null

    private var port: Output? = null

    /**
     * @param value Override IP to forward traffic to.
     */
    @JvmName("mjxaahvxleeonfbu")
    public suspend fun ip(`value`: Output) {
        this.ip = value
    }

    /**
     * @param value Override Port to forward traffic to.
     */
    @JvmName("hjqkyxokvcvhqxal")
    public suspend fun port(`value`: Output) {
        this.port = value
    }

    /**
     * @param value Override IP to forward traffic to.
     */
    @JvmName("jlmcpusjqdengffw")
    public suspend fun ip(`value`: String) {
        val toBeMapped = value
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.ip = mapped
    }

    /**
     * @param value Override Port to forward traffic to.
     */
    @JvmName("iaybvjlcvwvcgyui")
    public suspend fun port(`value`: Int) {
        val toBeMapped = value
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.port = mapped
    }

    internal fun build(): ZeroTrustGatewayPolicyRuleSettingsL4overrideArgs =
        ZeroTrustGatewayPolicyRuleSettingsL4overrideArgs(
            ip = ip ?: throw PulumiNullFieldException("ip"),
            port = port ?: throw PulumiNullFieldException("port"),
        )
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy