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

com.pulumi.gcp.compute.kotlin.inputs.RegionUrlMapDefaultRouteActionFaultInjectionPolicyArgs.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.10.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.RegionUrlMapDefaultRouteActionFaultInjectionPolicyArgs.builder
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import com.pulumi.kotlin.applySuspend
import kotlin.Suppress
import kotlin.Unit
import kotlin.jvm.JvmName

/**
 *
 * @property abort The specification for how client requests are aborted as part of fault injection.
 * Structure is documented below.
 * @property delay The specification for how client requests are delayed as part of fault injection, before being sent to a backend service.
 * Structure is documented below.
 */
public data class RegionUrlMapDefaultRouteActionFaultInjectionPolicyArgs(
    public val abort: Output? = null,
    public val delay: Output? = null,
) :
    ConvertibleToJava {
    override fun toJava(): com.pulumi.gcp.compute.inputs.RegionUrlMapDefaultRouteActionFaultInjectionPolicyArgs =
        com.pulumi.gcp.compute.inputs.RegionUrlMapDefaultRouteActionFaultInjectionPolicyArgs.builder()
            .abort(abort?.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) }))
            .delay(delay?.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) })).build()
}

/**
 * Builder for [RegionUrlMapDefaultRouteActionFaultInjectionPolicyArgs].
 */
@PulumiTagMarker
public class RegionUrlMapDefaultRouteActionFaultInjectionPolicyArgsBuilder internal constructor() {
    private var abort: Output? = null

    private var delay: Output? = null

    /**
     * @param value The specification for how client requests are aborted as part of fault injection.
     * Structure is documented below.
     */
    @JvmName("eggncwpeubtjmvvc")
    public suspend fun abort(`value`: Output) {
        this.abort = value
    }

    /**
     * @param value The specification for how client requests are delayed as part of fault injection, before being sent to a backend service.
     * Structure is documented below.
     */
    @JvmName("mpfjwgytfnypqidg")
    public suspend fun delay(`value`: Output) {
        this.delay = value
    }

    /**
     * @param value The specification for how client requests are aborted as part of fault injection.
     * Structure is documented below.
     */
    @JvmName("ocsedplivoebiykb")
    public suspend fun abort(`value`: RegionUrlMapDefaultRouteActionFaultInjectionPolicyAbortArgs?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.abort = mapped
    }

    /**
     * @param argument The specification for how client requests are aborted as part of fault injection.
     * Structure is documented below.
     */
    @JvmName("fpeodmiseepaycol")
    public suspend fun abort(argument: suspend RegionUrlMapDefaultRouteActionFaultInjectionPolicyAbortArgsBuilder.() -> Unit) {
        val toBeMapped =
            RegionUrlMapDefaultRouteActionFaultInjectionPolicyAbortArgsBuilder().applySuspend {
                argument()
            }.build()
        val mapped = of(toBeMapped)
        this.abort = mapped
    }

    /**
     * @param value The specification for how client requests are delayed as part of fault injection, before being sent to a backend service.
     * Structure is documented below.
     */
    @JvmName("igbbdtukpjndgvur")
    public suspend fun delay(`value`: RegionUrlMapDefaultRouteActionFaultInjectionPolicyDelayArgs?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.delay = mapped
    }

    /**
     * @param argument The specification for how client requests are delayed as part of fault injection, before being sent to a backend service.
     * Structure is documented below.
     */
    @JvmName("rsriuoxbsjcebuyf")
    public suspend fun delay(argument: suspend RegionUrlMapDefaultRouteActionFaultInjectionPolicyDelayArgsBuilder.() -> Unit) {
        val toBeMapped =
            RegionUrlMapDefaultRouteActionFaultInjectionPolicyDelayArgsBuilder().applySuspend {
                argument()
            }.build()
        val mapped = of(toBeMapped)
        this.delay = mapped
    }

    internal fun build(): RegionUrlMapDefaultRouteActionFaultInjectionPolicyArgs =
        RegionUrlMapDefaultRouteActionFaultInjectionPolicyArgs(
            abort = abort,
            delay = delay,
        )
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy