com.pulumi.gcp.networkservices.kotlin.inputs.GrpcRouteRuleActionFaultInjectionPolicyArgs.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.GrpcRouteRuleActionFaultInjectionPolicyArgs.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 Specification of how client requests are aborted as part of fault injection before being sent to a destination.
* Structure is documented below.
* @property delay Specification of how client requests are delayed as part of fault injection before being sent to a destination.
* Structure is documented below.
*/
public data class GrpcRouteRuleActionFaultInjectionPolicyArgs(
public val abort: Output? = null,
public val delay: Output? = null,
) :
ConvertibleToJava {
override fun toJava(): com.pulumi.gcp.networkservices.inputs.GrpcRouteRuleActionFaultInjectionPolicyArgs =
com.pulumi.gcp.networkservices.inputs.GrpcRouteRuleActionFaultInjectionPolicyArgs.builder()
.abort(abort?.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) }))
.delay(delay?.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) })).build()
}
/**
* Builder for [GrpcRouteRuleActionFaultInjectionPolicyArgs].
*/
@PulumiTagMarker
public class GrpcRouteRuleActionFaultInjectionPolicyArgsBuilder internal constructor() {
private var abort: Output? = null
private var delay: Output? = null
/**
* @param value Specification of how client requests are aborted as part of fault injection before being sent to a destination.
* Structure is documented below.
*/
@JvmName("pkwoajljjwdfgkla")
public suspend fun abort(`value`: Output) {
this.abort = value
}
/**
* @param value Specification of how client requests are delayed as part of fault injection before being sent to a destination.
* Structure is documented below.
*/
@JvmName("ncoocnvwywfloirh")
public suspend fun delay(`value`: Output) {
this.delay = value
}
/**
* @param value Specification of how client requests are aborted as part of fault injection before being sent to a destination.
* Structure is documented below.
*/
@JvmName("eixkkutvurdxptvr")
public suspend fun abort(`value`: GrpcRouteRuleActionFaultInjectionPolicyAbortArgs?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.abort = mapped
}
/**
* @param argument Specification of how client requests are aborted as part of fault injection before being sent to a destination.
* Structure is documented below.
*/
@JvmName("mkbmswtoilqqavio")
public suspend fun abort(argument: suspend GrpcRouteRuleActionFaultInjectionPolicyAbortArgsBuilder.() -> Unit) {
val toBeMapped = GrpcRouteRuleActionFaultInjectionPolicyAbortArgsBuilder().applySuspend {
argument()
}.build()
val mapped = of(toBeMapped)
this.abort = mapped
}
/**
* @param value Specification of how client requests are delayed as part of fault injection before being sent to a destination.
* Structure is documented below.
*/
@JvmName("syqpuwufvghvelol")
public suspend fun delay(`value`: GrpcRouteRuleActionFaultInjectionPolicyDelayArgs?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.delay = mapped
}
/**
* @param argument Specification of how client requests are delayed as part of fault injection before being sent to a destination.
* Structure is documented below.
*/
@JvmName("lmwsevhhmafwspis")
public suspend fun delay(argument: suspend GrpcRouteRuleActionFaultInjectionPolicyDelayArgsBuilder.() -> Unit) {
val toBeMapped = GrpcRouteRuleActionFaultInjectionPolicyDelayArgsBuilder().applySuspend {
argument()
}.build()
val mapped = of(toBeMapped)
this.delay = mapped
}
internal fun build(): GrpcRouteRuleActionFaultInjectionPolicyArgs =
GrpcRouteRuleActionFaultInjectionPolicyArgs(
abort = abort,
delay = delay,
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy