com.pulumi.kubernetes.extensions.v1beta1.kotlin.inputs.DeploymentStrategyArgs.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.
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.kubernetes.extensions.v1beta1.kotlin.inputs
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import com.pulumi.kotlin.applySuspend
import com.pulumi.kubernetes.extensions.v1beta1.inputs.DeploymentStrategyArgs.builder
import kotlin.String
import kotlin.Suppress
import kotlin.Unit
import kotlin.jvm.JvmName
/**
* DeploymentStrategy describes how to replace existing pods with new ones.
* @property rollingUpdate Rolling update config params. Present only if DeploymentStrategyType = RollingUpdate.
* @property type Type of deployment. Can be "Recreate" or "RollingUpdate". Default is RollingUpdate.
*/
public data class DeploymentStrategyArgs(
public val rollingUpdate: Output? = null,
public val type: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.kubernetes.extensions.v1beta1.inputs.DeploymentStrategyArgs =
com.pulumi.kubernetes.extensions.v1beta1.inputs.DeploymentStrategyArgs.builder()
.rollingUpdate(rollingUpdate?.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) }))
.type(type?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [DeploymentStrategyArgs].
*/
@PulumiTagMarker
public class DeploymentStrategyArgsBuilder internal constructor() {
private var rollingUpdate: Output? = null
private var type: Output? = null
/**
* @param value Rolling update config params. Present only if DeploymentStrategyType = RollingUpdate.
*/
@JvmName("smgyvwjmlgycqbgt")
public suspend fun rollingUpdate(`value`: Output) {
this.rollingUpdate = value
}
/**
* @param value Type of deployment. Can be "Recreate" or "RollingUpdate". Default is RollingUpdate.
*/
@JvmName("ukmuieqbtjpmdltf")
public suspend fun type(`value`: Output) {
this.type = value
}
/**
* @param value Rolling update config params. Present only if DeploymentStrategyType = RollingUpdate.
*/
@JvmName("tfemkoiwaqvellyx")
public suspend fun rollingUpdate(`value`: RollingUpdateDeploymentArgs?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.rollingUpdate = mapped
}
/**
* @param argument Rolling update config params. Present only if DeploymentStrategyType = RollingUpdate.
*/
@JvmName("shvephaulivsdipf")
public suspend fun rollingUpdate(argument: suspend RollingUpdateDeploymentArgsBuilder.() -> Unit) {
val toBeMapped = RollingUpdateDeploymentArgsBuilder().applySuspend { argument() }.build()
val mapped = of(toBeMapped)
this.rollingUpdate = mapped
}
/**
* @param value Type of deployment. Can be "Recreate" or "RollingUpdate". Default is RollingUpdate.
*/
@JvmName("aslxqtwxbeduufgb")
public suspend fun type(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.type = mapped
}
internal fun build(): DeploymentStrategyArgs = DeploymentStrategyArgs(
rollingUpdate = rollingUpdate,
type = type,
)
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy