![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.digitalocean.kotlin.outputs.KubernetesNodePoolTaint.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-digitalocean-kotlin Show documentation
Show all versions of pulumi-digitalocean-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.digitalocean.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
*
* @property effect How the node reacts to pods that it won't tolerate. Available effect values are: "NoSchedule", "PreferNoSchedule", "NoExecute".
* @property key An arbitrary string. The "key" and "value" fields of the "taint" object form a key-value pair.
* @property value An arbitrary string. The "key" and "value" fields of the "taint" object form a key-value pair.
*/
public data class KubernetesNodePoolTaint(
public val effect: String,
public val key: String,
public val `value`: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.digitalocean.outputs.KubernetesNodePoolTaint): KubernetesNodePoolTaint = KubernetesNodePoolTaint(
effect = javaType.effect(),
key = javaType.key(),
`value` = javaType.`value`(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy