![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azure.network.kotlin.inputs.FirewallPolicyIntrusionDetectionTrafficBypassArgs.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.network.kotlin.inputs
import com.pulumi.azure.network.inputs.FirewallPolicyIntrusionDetectionTrafficBypassArgs.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.String
import kotlin.Suppress
import kotlin.collections.List
import kotlin.jvm.JvmName
/**
*
* @property description The description for this bypass traffic setting.
* @property destinationAddresses Specifies a list of destination IP addresses that shall be bypassed by intrusion detection.
* @property destinationIpGroups Specifies a list of destination IP groups that shall be bypassed by intrusion detection.
* @property destinationPorts Specifies a list of destination IP ports that shall be bypassed by intrusion detection.
* @property name The name which should be used for this bypass traffic setting.
* @property protocol The protocols any of `ANY`, `TCP`, `ICMP`, `UDP` that shall be bypassed by intrusion detection.
* @property sourceAddresses Specifies a list of source addresses that shall be bypassed by intrusion detection.
* @property sourceIpGroups Specifies a list of source IP groups that shall be bypassed by intrusion detection.
*/
public data class FirewallPolicyIntrusionDetectionTrafficBypassArgs(
public val description: Output? = null,
public val destinationAddresses: Output>? = null,
public val destinationIpGroups: Output>? = null,
public val destinationPorts: Output>? = null,
public val name: Output,
public val protocol: Output,
public val sourceAddresses: Output>? = null,
public val sourceIpGroups: Output>? = null,
) :
ConvertibleToJava {
override fun toJava(): com.pulumi.azure.network.inputs.FirewallPolicyIntrusionDetectionTrafficBypassArgs =
com.pulumi.azure.network.inputs.FirewallPolicyIntrusionDetectionTrafficBypassArgs.builder()
.description(description?.applyValue({ args0 -> args0 }))
.destinationAddresses(destinationAddresses?.applyValue({ args0 -> args0.map({ args0 -> args0 }) }))
.destinationIpGroups(destinationIpGroups?.applyValue({ args0 -> args0.map({ args0 -> args0 }) }))
.destinationPorts(destinationPorts?.applyValue({ args0 -> args0.map({ args0 -> args0 }) }))
.name(name.applyValue({ args0 -> args0 }))
.protocol(protocol.applyValue({ args0 -> args0 }))
.sourceAddresses(sourceAddresses?.applyValue({ args0 -> args0.map({ args0 -> args0 }) }))
.sourceIpGroups(sourceIpGroups?.applyValue({ args0 -> args0.map({ args0 -> args0 }) })).build()
}
/**
* Builder for [FirewallPolicyIntrusionDetectionTrafficBypassArgs].
*/
@PulumiTagMarker
public class FirewallPolicyIntrusionDetectionTrafficBypassArgsBuilder internal constructor() {
private var description: Output? = null
private var destinationAddresses: Output>? = null
private var destinationIpGroups: Output>? = null
private var destinationPorts: Output>? = null
private var name: Output? = null
private var protocol: Output? = null
private var sourceAddresses: Output>? = null
private var sourceIpGroups: Output>? = null
/**
* @param value The description for this bypass traffic setting.
*/
@JvmName("mbbmhbopcyavggou")
public suspend fun description(`value`: Output) {
this.description = value
}
/**
* @param value Specifies a list of destination IP addresses that shall be bypassed by intrusion detection.
*/
@JvmName("ipdepehpohnwhogu")
public suspend fun destinationAddresses(`value`: Output>) {
this.destinationAddresses = value
}
@JvmName("beyensessskmpyka")
public suspend fun destinationAddresses(vararg values: Output) {
this.destinationAddresses = Output.all(values.asList())
}
/**
* @param values Specifies a list of destination IP addresses that shall be bypassed by intrusion detection.
*/
@JvmName("jyrgtawwgdujfhbk")
public suspend fun destinationAddresses(values: List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy