com.pulumi.azure.cdn.kotlin.outputs.FrontdoorRuleConditionsRemoteAddressCondition.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.Boolean
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
/**
*
* @property matchValues For the IP Match or IP Not Match operators: specify one or more IP address ranges. If multiple IP address ranges are specified, they're evaluated using `OR` logic. For the Geo Match or Geo Not Match operators: specify one or more locations using their country code.
* ->**NOTE:** See the `Specifying IP Address Ranges` section below on how to correctly define the `match_values` field.
* @property negateCondition If `true` operator becomes the opposite of its value. Possible values `true` or `false`. Defaults to `false`. Details can be found in the `Condition Operator List` below.
* @property operator The type of the remote address to match. Possible values include `Any`, `GeoMatch` or `IPMatch`. Use the `negate_condition` to specify Not `GeoMatch` or Not `IPMatch`. Defaults to `IPMatch`.
*/
public data class FrontdoorRuleConditionsRemoteAddressCondition(
public val matchValues: List? = null,
public val negateCondition: Boolean? = null,
public val `operator`: String? = null,
) {
public companion object {
public
fun toKotlin(javaType: com.pulumi.azure.cdn.outputs.FrontdoorRuleConditionsRemoteAddressCondition):
FrontdoorRuleConditionsRemoteAddressCondition =
FrontdoorRuleConditionsRemoteAddressCondition(
matchValues = javaType.matchValues().map({ args0 -> args0 }),
negateCondition = javaType.negateCondition().map({ args0 -> args0 }).orElse(null),
`operator` = javaType.`operator`().map({ args0 -> args0 }).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy