com.pulumi.kubernetes.apps.v1.kotlin.outputs.StatefulSetOrdinalsPatch.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.apps.v1.kotlin.outputs
import kotlin.Int
import kotlin.Suppress
/**
* StatefulSetOrdinals describes the policy used for replica ordinal assignment in this StatefulSet.
* @property start start is the number representing the first replica's index. It may be used to number replicas from an alternate index (eg: 1-indexed) over the default 0-indexed names, or to orchestrate progressive movement of replicas from one StatefulSet to another. If set, replica indices will be in the range:
* [.spec.ordinals.start, .spec.ordinals.start + .spec.replicas).
* If unset, defaults to 0. Replica indices will be in the range:
* [0, .spec.replicas).
*/
public data class StatefulSetOrdinalsPatch(
public val start: Int? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.kubernetes.apps.v1.outputs.StatefulSetOrdinalsPatch): StatefulSetOrdinalsPatch = StatefulSetOrdinalsPatch(
start = javaType.start().map({ args0 -> args0 }).orElse(null),
)
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy