![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azurenative.cdn.kotlin.outputs.CookiesMatchConditionParametersResponse.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.cdn.kotlin.outputs
import kotlin.Boolean
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
/**
* Defines the parameters for Cookies match conditions
* @property matchValues The match value for the condition of the delivery rule
* @property negateCondition Describes if this is negate condition or not
* @property operator Describes operator to be matched
* @property selector Name of Cookies to be matched
* @property transforms List of transforms
* @property typeName
*/
public data class CookiesMatchConditionParametersResponse(
public val matchValues: List? = null,
public val negateCondition: Boolean? = null,
public val `operator`: String,
public val selector: String? = null,
public val transforms: List? = null,
public val typeName: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azurenative.cdn.outputs.CookiesMatchConditionParametersResponse): CookiesMatchConditionParametersResponse = CookiesMatchConditionParametersResponse(
matchValues = javaType.matchValues().map({ args0 -> args0 }),
negateCondition = javaType.negateCondition().map({ args0 -> args0 }).orElse(null),
`operator` = javaType.`operator`(),
selector = javaType.selector().map({ args0 -> args0 }).orElse(null),
transforms = javaType.transforms().map({ args0 -> args0 }),
typeName = javaType.typeName(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy