com.pulumi.gcp.networkservices.kotlin.inputs.EdgeCacheOriginOriginOverrideActionUrlRewriteArgs.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.EdgeCacheOriginOriginOverrideActionUrlRewriteArgs.builder
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName
/**
*
* @property hostRewrite Prior to forwarding the request to the selected
* origin, the request's host header is replaced with
* contents of the hostRewrite.
* This value must be between 1 and 255 characters.
*/
public data class EdgeCacheOriginOriginOverrideActionUrlRewriteArgs(
public val hostRewrite: Output? = null,
) :
ConvertibleToJava {
override fun toJava(): com.pulumi.gcp.networkservices.inputs.EdgeCacheOriginOriginOverrideActionUrlRewriteArgs =
com.pulumi.gcp.networkservices.inputs.EdgeCacheOriginOriginOverrideActionUrlRewriteArgs.builder()
.hostRewrite(hostRewrite?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [EdgeCacheOriginOriginOverrideActionUrlRewriteArgs].
*/
@PulumiTagMarker
public class EdgeCacheOriginOriginOverrideActionUrlRewriteArgsBuilder internal constructor() {
private var hostRewrite: Output? = null
/**
* @param value Prior to forwarding the request to the selected
* origin, the request's host header is replaced with
* contents of the hostRewrite.
* This value must be between 1 and 255 characters.
*/
@JvmName("olgchcyewtpmabmx")
public suspend fun hostRewrite(`value`: Output) {
this.hostRewrite = value
}
/**
* @param value Prior to forwarding the request to the selected
* origin, the request's host header is replaced with
* contents of the hostRewrite.
* This value must be between 1 and 255 characters.
*/
@JvmName("vkxlgcvntljrdtec")
public suspend fun hostRewrite(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.hostRewrite = mapped
}
internal fun build(): EdgeCacheOriginOriginOverrideActionUrlRewriteArgs =
EdgeCacheOriginOriginOverrideActionUrlRewriteArgs(
hostRewrite = hostRewrite,
)
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy