com.pulumi.gcp.compute.kotlin.inputs.RegionUrlMapPathMatcherPathRuleRouteActionWeightedBackendServiceHeaderActionRequestHeadersToAddArgs.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.RegionUrlMapPathMatcherPathRuleRouteActionWeightedBackendServiceHeaderActionRequestHeadersToAddArgs.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.
* @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.
* The default value is false.
*/
public data class
RegionUrlMapPathMatcherPathRuleRouteActionWeightedBackendServiceHeaderActionRequestHeadersToAddArgs(
public val headerName: Output,
public val headerValue: Output,
public val replace: Output,
) :
ConvertibleToJava {
override fun toJava(): com.pulumi.gcp.compute.inputs.RegionUrlMapPathMatcherPathRuleRouteActionWeightedBackendServiceHeaderActionRequestHeadersToAddArgs =
com.pulumi.gcp.compute.inputs.RegionUrlMapPathMatcherPathRuleRouteActionWeightedBackendServiceHeaderActionRequestHeadersToAddArgs.builder()
.headerName(headerName.applyValue({ args0 -> args0 }))
.headerValue(headerValue.applyValue({ args0 -> args0 }))
.replace(replace.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [RegionUrlMapPathMatcherPathRuleRouteActionWeightedBackendServiceHeaderActionRequestHeadersToAddArgs].
*/
@PulumiTagMarker
public class
RegionUrlMapPathMatcherPathRuleRouteActionWeightedBackendServiceHeaderActionRequestHeadersToAddArgsBuilder
internal constructor() {
private var headerName: Output? = null
private var headerValue: Output? = null
private var replace: Output? = null
/**
* @param value The name of the header.
*/
@JvmName("dnibxsvgpbvasirf")
public suspend fun headerName(`value`: Output) {
this.headerName = value
}
/**
* @param value The value of the header to add.
*/
@JvmName("royfrsysbuadljqe")
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.
* The default value is false.
*/
@JvmName("ibvyxcufcugqbfeq")
public suspend fun replace(`value`: Output) {
this.replace = value
}
/**
* @param value The name of the header.
*/
@JvmName("ytscipordpgagqqr")
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("upcnsjyhpqtvjnrp")
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.
* The default value is false.
*/
@JvmName("lpowpsuvgsnvfdjm")
public suspend fun replace(`value`: Boolean) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> of(args0) })
this.replace = mapped
}
internal fun build(): RegionUrlMapPathMatcherPathRuleRouteActionWeightedBackendServiceHeaderActionRequestHeadersToAddArgs =
RegionUrlMapPathMatcherPathRuleRouteActionWeightedBackendServiceHeaderActionRequestHeadersToAddArgs(
headerName = headerName ?: throw PulumiNullFieldException("headerName"),
headerValue = headerValue ?: throw PulumiNullFieldException("headerValue"),
replace = replace ?: throw PulumiNullFieldException("replace"),
)
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy