com.pulumi.kubernetes.resource.v1alpha1.kotlin.inputs.PodSchedulingSpecPatchArgs.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.resource.v1alpha1.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.kubernetes.resource.v1alpha1.inputs.PodSchedulingSpecPatchArgs.builder
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
import kotlin.jvm.JvmName
/**
* PodSchedulingSpec describes where resources for the Pod are needed.
* @property potentialNodes PotentialNodes lists nodes where the Pod might be able to run.
* The size of this field is limited to 128. This is large enough for many clusters. Larger clusters may need more attempts to find a node that suits all pending resources. This may get increased in the future, but not reduced.
* @property selectedNode SelectedNode is the node for which allocation of ResourceClaims that are referenced by the Pod and that use "WaitForFirstConsumer" allocation is to be attempted.
*/
public data class PodSchedulingSpecPatchArgs(
public val potentialNodes: Output>? = null,
public val selectedNode: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.kubernetes.resource.v1alpha1.inputs.PodSchedulingSpecPatchArgs =
com.pulumi.kubernetes.resource.v1alpha1.inputs.PodSchedulingSpecPatchArgs.builder()
.potentialNodes(potentialNodes?.applyValue({ args0 -> args0.map({ args0 -> args0 }) }))
.selectedNode(selectedNode?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [PodSchedulingSpecPatchArgs].
*/
@PulumiTagMarker
public class PodSchedulingSpecPatchArgsBuilder internal constructor() {
private var potentialNodes: Output>? = null
private var selectedNode: Output? = null
/**
* @param value PotentialNodes lists nodes where the Pod might be able to run.
* The size of this field is limited to 128. This is large enough for many clusters. Larger clusters may need more attempts to find a node that suits all pending resources. This may get increased in the future, but not reduced.
*/
@JvmName("llumbskaldvroium")
public suspend fun potentialNodes(`value`: Output>) {
this.potentialNodes = value
}
@JvmName("qikwkdpvsfsbdvcg")
public suspend fun potentialNodes(vararg values: Output) {
this.potentialNodes = Output.all(values.asList())
}
/**
* @param values PotentialNodes lists nodes where the Pod might be able to run.
* The size of this field is limited to 128. This is large enough for many clusters. Larger clusters may need more attempts to find a node that suits all pending resources. This may get increased in the future, but not reduced.
*/
@JvmName("qsergrqiklvscjid")
public suspend fun potentialNodes(values: List
© 2015 - 2024 Weber Informatics LLC | Privacy Policy