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