com.pulumi.gcp.networkservices.kotlin.inputs.EdgeCacheServiceRoutingPathMatcherRouteRuleHeaderActionRequestHeaderToAddArgs.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.networkservices.kotlin.inputs
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.gcp.networkservices.inputs.EdgeCacheServiceRoutingPathMatcherRouteRuleHeaderActionRequestHeaderToAddArgs.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 Whether to replace all existing headers with the same name.
*/
public data class EdgeCacheServiceRoutingPathMatcherRouteRuleHeaderActionRequestHeaderToAddArgs(
public val headerName: Output,
public val headerValue: Output,
public val replace: Output? = null,
) :
ConvertibleToJava {
override fun toJava(): com.pulumi.gcp.networkservices.inputs.EdgeCacheServiceRoutingPathMatcherRouteRuleHeaderActionRequestHeaderToAddArgs =
com.pulumi.gcp.networkservices.inputs.EdgeCacheServiceRoutingPathMatcherRouteRuleHeaderActionRequestHeaderToAddArgs.builder()
.headerName(headerName.applyValue({ args0 -> args0 }))
.headerValue(headerValue.applyValue({ args0 -> args0 }))
.replace(replace?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [EdgeCacheServiceRoutingPathMatcherRouteRuleHeaderActionRequestHeaderToAddArgs].
*/
@PulumiTagMarker
public class EdgeCacheServiceRoutingPathMatcherRouteRuleHeaderActionRequestHeaderToAddArgsBuilder
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("klyqrcdrguasloyh")
public suspend fun headerName(`value`: Output) {
this.headerName = value
}
/**
* @param value The value of the header to add.
*/
@JvmName("kjsetdadbgyyrlhq")
public suspend fun headerValue(`value`: Output) {
this.headerValue = value
}
/**
* @param value Whether to replace all existing headers with the same name.
*/
@JvmName("oenenxkgovlwwefm")
public suspend fun replace(`value`: Output) {
this.replace = value
}
/**
* @param value The name of the header to add.
*/
@JvmName("lvdwgylrtmgdbsly")
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("ssxntinkupdaqcts")
public suspend fun headerValue(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> of(args0) })
this.headerValue = mapped
}
/**
* @param value Whether to replace all existing headers with the same name.
*/
@JvmName("omygrthebcwrmqob")
public suspend fun replace(`value`: Boolean?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.replace = mapped
}
internal fun build(): EdgeCacheServiceRoutingPathMatcherRouteRuleHeaderActionRequestHeaderToAddArgs =
EdgeCacheServiceRoutingPathMatcherRouteRuleHeaderActionRequestHeaderToAddArgs(
headerName = headerName ?: throw PulumiNullFieldException("headerName"),
headerValue = headerValue ?: throw PulumiNullFieldException("headerValue"),
replace = replace,
)
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy