
com.pulumi.azure.network.kotlin.outputs.GetApplicationGatewayRewriteRuleSetRewriteRuleCondition.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azure.network.kotlin.outputs
import kotlin.Boolean
import kotlin.String
import kotlin.Suppress
/**
*
* @property ignoreCase Whether a case insensitive comparison is performed.
* @property negate Whether the result of the condition evaluation is negated.
* @property pattern The pattern, either fixed string or regular expression, that evaluates the truthfulness of the condition.
* @property variable The [variable](https://docs.microsoft.com/azure/application-gateway/rewrite-http-headers#server-variables) of the condition.
*/
public data class GetApplicationGatewayRewriteRuleSetRewriteRuleCondition(
public val ignoreCase: Boolean,
public val negate: Boolean,
public val pattern: String,
public val variable: String,
) {
public companion object {
public
fun toKotlin(javaType: com.pulumi.azure.network.outputs.GetApplicationGatewayRewriteRuleSetRewriteRuleCondition):
GetApplicationGatewayRewriteRuleSetRewriteRuleCondition =
GetApplicationGatewayRewriteRuleSetRewriteRuleCondition(
ignoreCase = javaType.ignoreCase(),
negate = javaType.negate(),
pattern = javaType.pattern(),
variable = javaType.variable(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy