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

com.pulumi.gcp.compute.kotlin.inputs.URLMapPathMatcherDefaultRouteActionWeightedBackendServiceHeaderActionResponseHeadersToAddArgs.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: 8.10.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.gcp.compute.kotlin.inputs

import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.gcp.compute.inputs.URLMapPathMatcherDefaultRouteActionWeightedBackendServiceHeaderActionResponseHeadersToAddArgs.builder
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.Boolean
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName

/**
 *
 * @property headerName The name of the header to add.
 * @property headerValue The value of the header to add.
 * @property replace If false, headerValue is appended to any values that already exist for the header.
 * If true, headerValue is set for the header, discarding any values that were set for that header.
 */
public data class
URLMapPathMatcherDefaultRouteActionWeightedBackendServiceHeaderActionResponseHeadersToAddArgs(
    public val headerName: Output? = null,
    public val headerValue: Output? = null,
    public val replace: Output? = null,
) :
    ConvertibleToJava {
    override fun toJava(): com.pulumi.gcp.compute.inputs.URLMapPathMatcherDefaultRouteActionWeightedBackendServiceHeaderActionResponseHeadersToAddArgs =
        com.pulumi.gcp.compute.inputs.URLMapPathMatcherDefaultRouteActionWeightedBackendServiceHeaderActionResponseHeadersToAddArgs.builder()
            .headerName(headerName?.applyValue({ args0 -> args0 }))
            .headerValue(headerValue?.applyValue({ args0 -> args0 }))
            .replace(replace?.applyValue({ args0 -> args0 })).build()
}

/**
 * Builder for [URLMapPathMatcherDefaultRouteActionWeightedBackendServiceHeaderActionResponseHeadersToAddArgs].
 */
@PulumiTagMarker
public class
URLMapPathMatcherDefaultRouteActionWeightedBackendServiceHeaderActionResponseHeadersToAddArgsBuilder
internal constructor() {
    private var headerName: Output? = null

    private var headerValue: Output? = null

    private var replace: Output? = null

    /**
     * @param value The name of the header to add.
     */
    @JvmName("lmbrgxyqdyghkxdc")
    public suspend fun headerName(`value`: Output) {
        this.headerName = value
    }

    /**
     * @param value The value of the header to add.
     */
    @JvmName("ovecwgjggruitvlw")
    public suspend fun headerValue(`value`: Output) {
        this.headerValue = value
    }

    /**
     * @param value If false, headerValue is appended to any values that already exist for the header.
     * If true, headerValue is set for the header, discarding any values that were set for that header.
     */
    @JvmName("ljoadwpuhllwebjw")
    public suspend fun replace(`value`: Output) {
        this.replace = value
    }

    /**
     * @param value The name of the header to add.
     */
    @JvmName("pfxlljxwkqyyrlwg")
    public suspend fun headerName(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.headerName = mapped
    }

    /**
     * @param value The value of the header to add.
     */
    @JvmName("gclpqgrdwslhtrwn")
    public suspend fun headerValue(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.headerValue = mapped
    }

    /**
     * @param value If false, headerValue is appended to any values that already exist for the header.
     * If true, headerValue is set for the header, discarding any values that were set for that header.
     */
    @JvmName("ccjtoriipiscyiqf")
    public suspend fun replace(`value`: Boolean?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.replace = mapped
    }

    internal fun build(): URLMapPathMatcherDefaultRouteActionWeightedBackendServiceHeaderActionResponseHeadersToAddArgs =
        URLMapPathMatcherDefaultRouteActionWeightedBackendServiceHeaderActionResponseHeadersToAddArgs(
            headerName = headerName,
            headerValue = headerValue,
            replace = replace,
        )
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy