![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azure.cdn.kotlin.outputs.EndpointDeliveryRuleRemoteAddressCondition.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 List of string values. For `GeoMatch` `operator` this should be a list of country codes (e.g. `US` or `DE`). List of IP address if `operator` equals to `IPMatch`. This is required if `operator` is not `Any`.
* @property negateCondition Defaults to `false`.
* @property operator Valid values are `Any`, `GeoMatch` and `IPMatch`.
*/
public data class EndpointDeliveryRuleRemoteAddressCondition(
public val matchValues: List? = null,
public val negateCondition: Boolean? = null,
public val `operator`: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azure.cdn.outputs.EndpointDeliveryRuleRemoteAddressCondition): EndpointDeliveryRuleRemoteAddressCondition = EndpointDeliveryRuleRemoteAddressCondition(
matchValues = javaType.matchValues().map({ args0 -> args0 }),
negateCondition = javaType.negateCondition().map({ args0 -> args0 }).orElse(null),
`operator` = javaType.`operator`(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy