com.pulumi.gcp.compute.kotlin.inputs.URLMapPathMatcherRouteRuleHeaderActionResponseHeadersToAddArgs.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-gcp-kotlin Show documentation
Show all versions of pulumi-gcp-kotlin Show documentation
Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.
@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.URLMapPathMatcherRouteRuleHeaderActionResponseHeadersToAddArgs.builder
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.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 URLMapPathMatcherRouteRuleHeaderActionResponseHeadersToAddArgs(
public val headerName: Output,
public val headerValue: Output,
public val replace: Output,
) :
ConvertibleToJava {
override fun toJava(): com.pulumi.gcp.compute.inputs.URLMapPathMatcherRouteRuleHeaderActionResponseHeadersToAddArgs =
com.pulumi.gcp.compute.inputs.URLMapPathMatcherRouteRuleHeaderActionResponseHeadersToAddArgs.builder()
.headerName(headerName.applyValue({ args0 -> args0 }))
.headerValue(headerValue.applyValue({ args0 -> args0 }))
.replace(replace.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [URLMapPathMatcherRouteRuleHeaderActionResponseHeadersToAddArgs].
*/
@PulumiTagMarker
public class URLMapPathMatcherRouteRuleHeaderActionResponseHeadersToAddArgsBuilder 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("kwkvjbywipqfxwwi")
public suspend fun headerName(`value`: Output) {
this.headerName = value
}
/**
* @param value The value of the header to add.
*/
@JvmName("xwwkjxgldhntbjbo")
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("lsvypflnvhuvhpmm")
public suspend fun replace(`value`: Output) {
this.replace = value
}
/**
* @param value The name of the header to add.
*/
@JvmName("eqwugphvqlhhbpuu")
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("erporwjlvaoihunu")
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("jbkpdtekdqgsrekx")
public suspend fun replace(`value`: Boolean) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> of(args0) })
this.replace = mapped
}
internal fun build(): URLMapPathMatcherRouteRuleHeaderActionResponseHeadersToAddArgs =
URLMapPathMatcherRouteRuleHeaderActionResponseHeadersToAddArgs(
headerName = headerName ?: throw PulumiNullFieldException("headerName"),
headerValue = headerValue ?: throw PulumiNullFieldException("headerValue"),
replace = replace ?: throw PulumiNullFieldException("replace"),
)
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy