![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azure.waf.kotlin.inputs.PolicyManagedRulesExclusionExcludedRuleSetArgs.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.waf.kotlin.inputs
import com.pulumi.azure.waf.inputs.PolicyManagedRulesExclusionExcludedRuleSetArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import com.pulumi.kotlin.applySuspend
import kotlin.String
import kotlin.Suppress
import kotlin.Unit
import kotlin.collections.List
import kotlin.jvm.JvmName
/**
*
* @property ruleGroups One or more `rule_group` block defined below.
* @property type The rule set type. Possible values are `Microsoft_DefaultRuleSet`, `Microsoft_BotManagerRuleSet` and `OWASP`. Defaults to `OWASP`.
* @property version The rule set version. Possible values are `1.0` (for rule set type `Microsoft_BotManagerRuleSet`), `2.1` (for rule set type `Microsoft_DefaultRuleSet`) and `3.2` (for rule set type `OWASP`). Defaults to `3.2`.
*/
public data class PolicyManagedRulesExclusionExcludedRuleSetArgs(
public val ruleGroups: Output>? =
null,
public val type: Output? = null,
public val version: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azure.waf.inputs.PolicyManagedRulesExclusionExcludedRuleSetArgs = com.pulumi.azure.waf.inputs.PolicyManagedRulesExclusionExcludedRuleSetArgs.builder()
.ruleGroups(
ruleGroups?.applyValue({ args0 ->
args0.map({ args0 ->
args0.let({ args0 ->
args0.toJava()
})
})
}),
)
.type(type?.applyValue({ args0 -> args0 }))
.version(version?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [PolicyManagedRulesExclusionExcludedRuleSetArgs].
*/
@PulumiTagMarker
public class PolicyManagedRulesExclusionExcludedRuleSetArgsBuilder internal constructor() {
private var ruleGroups: Output>? =
null
private var type: Output? = null
private var version: Output? = null
/**
* @param value One or more `rule_group` block defined below.
*/
@JvmName("qtsrnmsctxhglash")
public suspend fun ruleGroups(`value`: Output>) {
this.ruleGroups = value
}
@JvmName("jqlmcogbsefurcnw")
public suspend fun ruleGroups(vararg values: Output) {
this.ruleGroups = Output.all(values.asList())
}
/**
* @param values One or more `rule_group` block defined below.
*/
@JvmName("avxawkmflvbgaknj")
public suspend fun ruleGroups(values: List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy