![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azure.paloalto.kotlin.inputs.NextGenerationFirewallVirtualNetworkLocalRulestackDestinationNatFrontendConfigArgs.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.paloalto.kotlin.inputs
import com.pulumi.azure.paloalto.inputs.NextGenerationFirewallVirtualNetworkLocalRulestackDestinationNatFrontendConfigArgs.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 port The port on which to receive traffic.
* @property publicIpAddressId The ID of the Public IP Address on which to receive traffic.
* > **Note:** This must be an Azure Public IP address ID also specified in the `public_ip_address_ids` list.
*/
public data class
NextGenerationFirewallVirtualNetworkLocalRulestackDestinationNatFrontendConfigArgs(
public val port: Output,
public val publicIpAddressId: Output,
) :
ConvertibleToJava {
override fun toJava(): com.pulumi.azure.paloalto.inputs.NextGenerationFirewallVirtualNetworkLocalRulestackDestinationNatFrontendConfigArgs =
com.pulumi.azure.paloalto.inputs.NextGenerationFirewallVirtualNetworkLocalRulestackDestinationNatFrontendConfigArgs.builder()
.port(port.applyValue({ args0 -> args0 }))
.publicIpAddressId(publicIpAddressId.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [NextGenerationFirewallVirtualNetworkLocalRulestackDestinationNatFrontendConfigArgs].
*/
@PulumiTagMarker
public class
NextGenerationFirewallVirtualNetworkLocalRulestackDestinationNatFrontendConfigArgsBuilder
internal constructor() {
private var port: Output? = null
private var publicIpAddressId: Output? = null
/**
* @param value The port on which to receive traffic.
*/
@JvmName("oaootgsjpeiaeaet")
public suspend fun port(`value`: Output) {
this.port = value
}
/**
* @param value The ID of the Public IP Address on which to receive traffic.
* > **Note:** This must be an Azure Public IP address ID also specified in the `public_ip_address_ids` list.
*/
@JvmName("oiflrcmmpguemtpw")
public suspend fun publicIpAddressId(`value`: Output) {
this.publicIpAddressId = value
}
/**
* @param value The port on which to receive traffic.
*/
@JvmName("oervumbgjoquoiik")
public suspend fun port(`value`: Int) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> of(args0) })
this.port = mapped
}
/**
* @param value The ID of the Public IP Address on which to receive traffic.
* > **Note:** This must be an Azure Public IP address ID also specified in the `public_ip_address_ids` list.
*/
@JvmName("rqujqxqgbnjqyeyc")
public suspend fun publicIpAddressId(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> of(args0) })
this.publicIpAddressId = mapped
}
internal fun build(): NextGenerationFirewallVirtualNetworkLocalRulestackDestinationNatFrontendConfigArgs =
NextGenerationFirewallVirtualNetworkLocalRulestackDestinationNatFrontendConfigArgs(
port = port ?: throw PulumiNullFieldException("port"),
publicIpAddressId = publicIpAddressId ?: throw PulumiNullFieldException("publicIpAddressId"),
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy