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

com.pulumi.gcp.compute.kotlin.inputs.RegionUrlMapPathMatcherRouteRuleRouteActionRequestMirrorPolicyArgs.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.12.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.RegionUrlMapPathMatcherRouteRuleRouteActionRequestMirrorPolicyArgs.builder
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiNullFieldException
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName

/**
 *
 * @property backendService The full or partial URL to the RegionBackendService resource being mirrored to.
 * The backend service configured for a mirroring policy must reference backends that are of the same type as the original backend service matched in the URL map.
 * Serverless NEG backends are not currently supported as a mirrored backend service.
 */
public data class RegionUrlMapPathMatcherRouteRuleRouteActionRequestMirrorPolicyArgs(
    public val backendService: Output,
) :
    ConvertibleToJava {
    override fun toJava(): com.pulumi.gcp.compute.inputs.RegionUrlMapPathMatcherRouteRuleRouteActionRequestMirrorPolicyArgs =
        com.pulumi.gcp.compute.inputs.RegionUrlMapPathMatcherRouteRuleRouteActionRequestMirrorPolicyArgs.builder()
            .backendService(backendService.applyValue({ args0 -> args0 })).build()
}

/**
 * Builder for [RegionUrlMapPathMatcherRouteRuleRouteActionRequestMirrorPolicyArgs].
 */
@PulumiTagMarker
public class RegionUrlMapPathMatcherRouteRuleRouteActionRequestMirrorPolicyArgsBuilder internal constructor() {
    private var backendService: Output? = null

    /**
     * @param value The full or partial URL to the RegionBackendService resource being mirrored to.
     * The backend service configured for a mirroring policy must reference backends that are of the same type as the original backend service matched in the URL map.
     * Serverless NEG backends are not currently supported as a mirrored backend service.
     */
    @JvmName("ggufjogivxmtuyoj")
    public suspend fun backendService(`value`: Output) {
        this.backendService = value
    }

    /**
     * @param value The full or partial URL to the RegionBackendService resource being mirrored to.
     * The backend service configured for a mirroring policy must reference backends that are of the same type as the original backend service matched in the URL map.
     * Serverless NEG backends are not currently supported as a mirrored backend service.
     */
    @JvmName("smqegyhnolrsuxmr")
    public suspend fun backendService(`value`: String) {
        val toBeMapped = value
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.backendService = mapped
    }

    internal fun build(): RegionUrlMapPathMatcherRouteRuleRouteActionRequestMirrorPolicyArgs =
        RegionUrlMapPathMatcherRouteRuleRouteActionRequestMirrorPolicyArgs(
            backendService = backendService ?: throw PulumiNullFieldException("backendService"),
        )
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy