com.pulumi.kubernetes.flowcontrol.v1alpha1.kotlin.outputs.LimitResponsePatch.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-kubernetes-kotlin Show documentation
Show all versions of pulumi-kubernetes-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.
The newest version!
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.kubernetes.flowcontrol.v1alpha1.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
* LimitResponse defines how to handle requests that can not be executed right now.
* @property queuing `queuing` holds the configuration parameters for queuing. This field may be non-empty only if `type` is `"Queue"`.
* @property type `type` is "Queue" or "Reject". "Queue" means that requests that can not be executed upon arrival are held in a queue until they can be executed or a queuing limit is reached. "Reject" means that requests that can not be executed upon arrival are rejected. Required.
*/
public data class LimitResponsePatch(
public val queuing: QueuingConfigurationPatch? = null,
public val type: String? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.kubernetes.flowcontrol.v1alpha1.outputs.LimitResponsePatch): LimitResponsePatch = LimitResponsePatch(
queuing = javaType.queuing().map({ args0 ->
args0.let({ args0 ->
com.pulumi.kubernetes.flowcontrol.v1alpha1.kotlin.outputs.QueuingConfigurationPatch.Companion.toKotlin(args0)
})
}).orElse(null),
type = javaType.type().map({ args0 -> args0 }).orElse(null),
)
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy