All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.azurenative.cdn.kotlin.outputs.RequestBodyMatchConditionParametersResponse.kt Maven / Gradle / Ivy

@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 RequestBody 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 transforms List of transforms
 * @property typeName
 */
public data class RequestBodyMatchConditionParametersResponse(
    public val matchValues: List? = null,
    public val negateCondition: Boolean? = null,
    public val `operator`: String,
    public val transforms: List? = null,
    public val typeName: String,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.azurenative.cdn.outputs.RequestBodyMatchConditionParametersResponse): RequestBodyMatchConditionParametersResponse = RequestBodyMatchConditionParametersResponse(
            matchValues = javaType.matchValues().map({ args0 -> args0 }),
            negateCondition = javaType.negateCondition().map({ args0 -> args0 }).orElse(null),
            `operator` = javaType.`operator`(),
            transforms = javaType.transforms().map({ args0 -> args0 }),
            typeName = javaType.typeName(),
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy