com.pulumi.gcp.networkservices.kotlin.outputs.GrpcRouteRuleActionFaultInjectionPolicy.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.outputs
import kotlin.Suppress
/**
*
* @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 GrpcRouteRuleActionFaultInjectionPolicy(
public val abort: GrpcRouteRuleActionFaultInjectionPolicyAbort? = null,
public val delay: GrpcRouteRuleActionFaultInjectionPolicyDelay? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.gcp.networkservices.outputs.GrpcRouteRuleActionFaultInjectionPolicy): GrpcRouteRuleActionFaultInjectionPolicy = GrpcRouteRuleActionFaultInjectionPolicy(
abort = javaType.abort().map({ args0 ->
args0.let({ args0 ->
com.pulumi.gcp.networkservices.kotlin.outputs.GrpcRouteRuleActionFaultInjectionPolicyAbort.Companion.toKotlin(args0)
})
}).orElse(null),
delay = javaType.delay().map({ args0 ->
args0.let({ args0 ->
com.pulumi.gcp.networkservices.kotlin.outputs.GrpcRouteRuleActionFaultInjectionPolicyDelay.Companion.toKotlin(args0)
})
}).orElse(null),
)
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy