
com.pulumi.azure.frontdoor.kotlin.inputs.RulesEngineRuleActionRequestHeaderArgs.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azure.frontdoor.kotlin.inputs
import com.pulumi.azure.frontdoor.inputs.RulesEngineRuleActionRequestHeaderArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName
/**
*
* @property headerActionType can be set to `Overwrite`, `Append` or `Delete`.
* @property headerName header name (string).
* @property value value name (string).
*/
public data class RulesEngineRuleActionRequestHeaderArgs(
public val headerActionType: Output? = null,
public val headerName: Output? = null,
public val `value`: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azure.frontdoor.inputs.RulesEngineRuleActionRequestHeaderArgs =
com.pulumi.azure.frontdoor.inputs.RulesEngineRuleActionRequestHeaderArgs.builder()
.headerActionType(headerActionType?.applyValue({ args0 -> args0 }))
.headerName(headerName?.applyValue({ args0 -> args0 }))
.`value`(`value`?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [RulesEngineRuleActionRequestHeaderArgs].
*/
@PulumiTagMarker
public class RulesEngineRuleActionRequestHeaderArgsBuilder internal constructor() {
private var headerActionType: Output? = null
private var headerName: Output? = null
private var `value`: Output? = null
/**
* @param value can be set to `Overwrite`, `Append` or `Delete`.
*/
@JvmName("stcptqcocighlrle")
public suspend fun headerActionType(`value`: Output) {
this.headerActionType = value
}
/**
* @param value header name (string).
*/
@JvmName("hxlxwnpenscnpcjd")
public suspend fun headerName(`value`: Output) {
this.headerName = value
}
/**
* @param value value name (string).
*/
@JvmName("jknnsbksnrqdmmch")
public suspend fun `value`(`value`: Output) {
this.`value` = value
}
/**
* @param value can be set to `Overwrite`, `Append` or `Delete`.
*/
@JvmName("mvrypnpcapslufkw")
public suspend fun headerActionType(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.headerActionType = mapped
}
/**
* @param value header name (string).
*/
@JvmName("rmwoetgynnijtgcm")
public suspend fun headerName(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.headerName = mapped
}
/**
* @param value value name (string).
*/
@JvmName("bpxnqfnfbssvfbvl")
public suspend fun `value`(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.`value` = mapped
}
internal fun build(): RulesEngineRuleActionRequestHeaderArgs =
RulesEngineRuleActionRequestHeaderArgs(
headerActionType = headerActionType,
headerName = headerName,
`value` = `value`,
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy