![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azurenative.network.kotlin.inputs.ApplicationGatewayFirewallDisabledRuleGroupArgs.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.network.kotlin.inputs
import com.pulumi.azurenative.network.inputs.ApplicationGatewayFirewallDisabledRuleGroupArgs.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.collections.List
import kotlin.jvm.JvmName
/**
* Allows to disable rules within a rule group or an entire rule group.
* @property ruleGroupName The name of the rule group that will be disabled.
* @property rules The list of rules that will be disabled. If null, all rules of the rule group will be disabled.
*/
public data class ApplicationGatewayFirewallDisabledRuleGroupArgs(
public val ruleGroupName: Output,
public val rules: Output>? = null,
) :
ConvertibleToJava {
override fun toJava(): com.pulumi.azurenative.network.inputs.ApplicationGatewayFirewallDisabledRuleGroupArgs =
com.pulumi.azurenative.network.inputs.ApplicationGatewayFirewallDisabledRuleGroupArgs.builder()
.ruleGroupName(ruleGroupName.applyValue({ args0 -> args0 }))
.rules(rules?.applyValue({ args0 -> args0.map({ args0 -> args0 }) })).build()
}
/**
* Builder for [ApplicationGatewayFirewallDisabledRuleGroupArgs].
*/
@PulumiTagMarker
public class ApplicationGatewayFirewallDisabledRuleGroupArgsBuilder internal constructor() {
private var ruleGroupName: Output? = null
private var rules: Output>? = null
/**
* @param value The name of the rule group that will be disabled.
*/
@JvmName("owvheglgusacljug")
public suspend fun ruleGroupName(`value`: Output) {
this.ruleGroupName = value
}
/**
* @param value The list of rules that will be disabled. If null, all rules of the rule group will be disabled.
*/
@JvmName("iicsqynovxcixmlm")
public suspend fun rules(`value`: Output>) {
this.rules = value
}
@JvmName("csiqnquoetqcjofc")
public suspend fun rules(vararg values: Output) {
this.rules = Output.all(values.asList())
}
/**
* @param values The list of rules that will be disabled. If null, all rules of the rule group will be disabled.
*/
@JvmName("fjmxqhnywupfytcx")
public suspend fun rules(values: List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy