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

com.pulumi.azure.frontdoor.kotlin.inputs.RulesEngineRuleActionResponseHeaderArgs.kt Maven / Gradle / Ivy

Go to download

Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.

There is a newer version: 6.15.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.azure.frontdoor.kotlin.inputs

import com.pulumi.azure.frontdoor.inputs.RulesEngineRuleActionResponseHeaderArgs.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 RulesEngineRuleActionResponseHeaderArgs(
    public val headerActionType: Output? = null,
    public val headerName: Output? = null,
    public val `value`: Output? = null,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.azure.frontdoor.inputs.RulesEngineRuleActionResponseHeaderArgs =
        com.pulumi.azure.frontdoor.inputs.RulesEngineRuleActionResponseHeaderArgs.builder()
            .headerActionType(headerActionType?.applyValue({ args0 -> args0 }))
            .headerName(headerName?.applyValue({ args0 -> args0 }))
            .`value`(`value`?.applyValue({ args0 -> args0 })).build()
}

/**
 * Builder for [RulesEngineRuleActionResponseHeaderArgs].
 */
@PulumiTagMarker
public class RulesEngineRuleActionResponseHeaderArgsBuilder 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("ceslwbwrvwwdcamf")
    public suspend fun headerActionType(`value`: Output) {
        this.headerActionType = value
    }

    /**
     * @param value header name (string).
     */
    @JvmName("wirbpkefpacqjoen")
    public suspend fun headerName(`value`: Output) {
        this.headerName = value
    }

    /**
     * @param value value name (string).
     */
    @JvmName("sgsyfwqsgrllrlmr")
    public suspend fun `value`(`value`: Output) {
        this.`value` = value
    }

    /**
     * @param value can be set to `Overwrite`, `Append` or `Delete`.
     */
    @JvmName("dqiarmdogtjcdocr")
    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("pjunkxdblapteaao")
    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("lkburvoecbnwtkye")
    public suspend fun `value`(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.`value` = mapped
    }

    internal fun build(): RulesEngineRuleActionResponseHeaderArgs =
        RulesEngineRuleActionResponseHeaderArgs(
            headerActionType = headerActionType,
            headerName = headerName,
            `value` = `value`,
        )
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy