com.pulumi.azure.cdn.kotlin.outputs.FrontdoorFirewallPolicyManagedRuleOverrideRuleExclusion.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.cdn.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
*
* @property matchVariable The variable type to be excluded. Possible values are `QueryStringArgNames`, `RequestBodyPostArgNames`, `RequestCookieNames`, `RequestHeaderNames`, `RequestBodyJsonArgNames`
* > **NOTE:** `RequestBodyJsonArgNames` is only available on Default Rule Set (DRS) 2.0 or later
* @property operator Comparison operator to apply to the selector when specifying which elements in the collection this exclusion applies to. Possible values are: `Equals`, `Contains`, `StartsWith`, `EndsWith`, `EqualsAny`.
* @property selector Selector for the value in the `match_variable` attribute this exclusion applies to.
* > **NOTE:** `selector` must be set to `*` if `operator` is set to `EqualsAny`.
*/
public data class FrontdoorFirewallPolicyManagedRuleOverrideRuleExclusion(
public val matchVariable: String,
public val `operator`: String,
public val selector: String,
) {
public companion object {
public
fun toKotlin(javaType: com.pulumi.azure.cdn.outputs.FrontdoorFirewallPolicyManagedRuleOverrideRuleExclusion):
FrontdoorFirewallPolicyManagedRuleOverrideRuleExclusion =
FrontdoorFirewallPolicyManagedRuleOverrideRuleExclusion(
matchVariable = javaType.matchVariable(),
`operator` = javaType.`operator`(),
selector = javaType.selector(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy