Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azure.cdn.kotlin.inputs
import com.pulumi.azure.cdn.inputs.EndpointDeliveryRuleUrlPathConditionArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiNullFieldException
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.Boolean
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
import kotlin.jvm.JvmName
/**
*
* @property matchValues List of string values. This is required if `operator` is not `Any`.
* @property negateCondition Defaults to `false`.
* @property operator Valid values are `Any`, `BeginsWith`, `Contains`, `EndsWith`, `Equal`, `GreaterThan`, `GreaterThanOrEqual`, `LessThan`, `LessThanOrEqual`, `RegEx` and `Wildcard`.
* @property transforms A list of transforms. Valid values are `Lowercase` and `Uppercase`.
*/
public data class EndpointDeliveryRuleUrlPathConditionArgs(
public val matchValues: Output>? = null,
public val negateCondition: Output? = null,
public val `operator`: Output,
public val transforms: Output>? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azure.cdn.inputs.EndpointDeliveryRuleUrlPathConditionArgs =
com.pulumi.azure.cdn.inputs.EndpointDeliveryRuleUrlPathConditionArgs.builder()
.matchValues(matchValues?.applyValue({ args0 -> args0.map({ args0 -> args0 }) }))
.negateCondition(negateCondition?.applyValue({ args0 -> args0 }))
.`operator`(`operator`.applyValue({ args0 -> args0 }))
.transforms(transforms?.applyValue({ args0 -> args0.map({ args0 -> args0 }) })).build()
}
/**
* Builder for [EndpointDeliveryRuleUrlPathConditionArgs].
*/
@PulumiTagMarker
public class EndpointDeliveryRuleUrlPathConditionArgsBuilder internal constructor() {
private var matchValues: Output>? = null
private var negateCondition: Output? = null
private var `operator`: Output? = null
private var transforms: Output>? = null
/**
* @param value List of string values. This is required if `operator` is not `Any`.
*/
@JvmName("tvbmoukgkbghntlb")
public suspend fun matchValues(`value`: Output>) {
this.matchValues = value
}
@JvmName("giuqibceltdqcxrd")
public suspend fun matchValues(vararg values: Output) {
this.matchValues = Output.all(values.asList())
}
/**
* @param values List of string values. This is required if `operator` is not `Any`.
*/
@JvmName("ujncpxwlxtrcoefh")
public suspend fun matchValues(values: List