com.pulumi.kubernetes.resource.v1alpha2.kotlin.inputs.ResourceClassArgs.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.v1alpha2.kotlin.inputs
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiNullFieldException
import com.pulumi.kotlin.PulumiTagMarker
import com.pulumi.kotlin.applySuspend
import com.pulumi.kubernetes.core.v1.kotlin.inputs.NodeSelectorArgs
import com.pulumi.kubernetes.core.v1.kotlin.inputs.NodeSelectorArgsBuilder
import com.pulumi.kubernetes.meta.v1.kotlin.inputs.ObjectMetaArgs
import com.pulumi.kubernetes.meta.v1.kotlin.inputs.ObjectMetaArgsBuilder
import com.pulumi.kubernetes.resource.v1alpha2.inputs.ResourceClassArgs.builder
import kotlin.Boolean
import kotlin.String
import kotlin.Suppress
import kotlin.Unit
import kotlin.jvm.JvmName
/**
* ResourceClass is used by administrators to influence how resources are allocated.
* This is an alpha type and requires enabling the DynamicResourceAllocation feature gate.
* @property apiVersion APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
* @property driverName DriverName defines the name of the dynamic resource driver that is used for allocation of a ResourceClaim that uses this class.
* Resource drivers have a unique name in forward domain order (acme.example.com).
* @property kind Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
* @property metadata Standard object metadata
* @property parametersRef ParametersRef references an arbitrary separate object that may hold parameters that will be used by the driver when allocating a resource that uses this class. A dynamic resource driver can distinguish between parameters stored here and and those stored in ResourceClaimSpec.
* @property structuredParameters If and only if allocation of claims using this class is handled via structured parameters, then StructuredParameters must be set to true.
* @property suitableNodes Only nodes matching the selector will be considered by the scheduler when trying to find a Node that fits a Pod when that Pod uses a ResourceClaim that has not been allocated yet.
* Setting this field is optional. If null, all nodes are candidates.
*/
public data class ResourceClassArgs(
public val apiVersion: Output? = null,
public val driverName: Output,
public val kind: Output? = null,
public val metadata: Output? = null,
public val parametersRef: Output? = null,
public val structuredParameters: Output? = null,
public val suitableNodes: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.kubernetes.resource.v1alpha2.inputs.ResourceClassArgs =
com.pulumi.kubernetes.resource.v1alpha2.inputs.ResourceClassArgs.builder()
.apiVersion(apiVersion?.applyValue({ args0 -> args0 }))
.driverName(driverName.applyValue({ args0 -> args0 }))
.kind(kind?.applyValue({ args0 -> args0 }))
.metadata(metadata?.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) }))
.parametersRef(parametersRef?.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) }))
.structuredParameters(structuredParameters?.applyValue({ args0 -> args0 }))
.suitableNodes(suitableNodes?.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) })).build()
}
/**
* Builder for [ResourceClassArgs].
*/
@PulumiTagMarker
public class ResourceClassArgsBuilder internal constructor() {
private var apiVersion: Output? = null
private var driverName: Output? = null
private var kind: Output? = null
private var metadata: Output? = null
private var parametersRef: Output? = null
private var structuredParameters: Output? = null
private var suitableNodes: Output? = null
/**
* @param value APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
*/
@JvmName("xcyuoedjcnygdlar")
public suspend fun apiVersion(`value`: Output) {
this.apiVersion = value
}
/**
* @param value DriverName defines the name of the dynamic resource driver that is used for allocation of a ResourceClaim that uses this class.
* Resource drivers have a unique name in forward domain order (acme.example.com).
*/
@JvmName("axqndsruqcjpfums")
public suspend fun driverName(`value`: Output) {
this.driverName = value
}
/**
* @param value Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
*/
@JvmName("syhlvuryjrdrdndr")
public suspend fun kind(`value`: Output) {
this.kind = value
}
/**
* @param value Standard object metadata
*/
@JvmName("ompdgemjgdjpnaqo")
public suspend fun metadata(`value`: Output) {
this.metadata = value
}
/**
* @param value ParametersRef references an arbitrary separate object that may hold parameters that will be used by the driver when allocating a resource that uses this class. A dynamic resource driver can distinguish between parameters stored here and and those stored in ResourceClaimSpec.
*/
@JvmName("pkkepoxelcdlncxq")
public suspend fun parametersRef(`value`: Output) {
this.parametersRef = value
}
/**
* @param value If and only if allocation of claims using this class is handled via structured parameters, then StructuredParameters must be set to true.
*/
@JvmName("bllypnttxtljtawc")
public suspend fun structuredParameters(`value`: Output) {
this.structuredParameters = value
}
/**
* @param value Only nodes matching the selector will be considered by the scheduler when trying to find a Node that fits a Pod when that Pod uses a ResourceClaim that has not been allocated yet.
* Setting this field is optional. If null, all nodes are candidates.
*/
@JvmName("fpkbkakerbrdiucf")
public suspend fun suitableNodes(`value`: Output) {
this.suitableNodes = value
}
/**
* @param value APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
*/
@JvmName("vfmhvvncicxrurlm")
public suspend fun apiVersion(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.apiVersion = mapped
}
/**
* @param value DriverName defines the name of the dynamic resource driver that is used for allocation of a ResourceClaim that uses this class.
* Resource drivers have a unique name in forward domain order (acme.example.com).
*/
@JvmName("qpwjgujplkinhhto")
public suspend fun driverName(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> of(args0) })
this.driverName = mapped
}
/**
* @param value Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
*/
@JvmName("iebemmahyqekxksd")
public suspend fun kind(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.kind = mapped
}
/**
* @param value Standard object metadata
*/
@JvmName("cybrououmdfgefcs")
public suspend fun metadata(`value`: ObjectMetaArgs?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.metadata = mapped
}
/**
* @param argument Standard object metadata
*/
@JvmName("grhpnmbmvwjrtmfk")
public suspend fun metadata(argument: suspend ObjectMetaArgsBuilder.() -> Unit) {
val toBeMapped = ObjectMetaArgsBuilder().applySuspend { argument() }.build()
val mapped = of(toBeMapped)
this.metadata = mapped
}
/**
* @param value ParametersRef references an arbitrary separate object that may hold parameters that will be used by the driver when allocating a resource that uses this class. A dynamic resource driver can distinguish between parameters stored here and and those stored in ResourceClaimSpec.
*/
@JvmName("idtnhbsouhteacfq")
public suspend fun parametersRef(`value`: ResourceClassParametersReferenceArgs?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.parametersRef = mapped
}
/**
* @param argument ParametersRef references an arbitrary separate object that may hold parameters that will be used by the driver when allocating a resource that uses this class. A dynamic resource driver can distinguish between parameters stored here and and those stored in ResourceClaimSpec.
*/
@JvmName("bjblmequdeewaurd")
public suspend fun parametersRef(argument: suspend ResourceClassParametersReferenceArgsBuilder.() -> Unit) {
val toBeMapped = ResourceClassParametersReferenceArgsBuilder().applySuspend {
argument()
}.build()
val mapped = of(toBeMapped)
this.parametersRef = mapped
}
/**
* @param value If and only if allocation of claims using this class is handled via structured parameters, then StructuredParameters must be set to true.
*/
@JvmName("xohdiwodbwyairke")
public suspend fun structuredParameters(`value`: Boolean?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.structuredParameters = mapped
}
/**
* @param value Only nodes matching the selector will be considered by the scheduler when trying to find a Node that fits a Pod when that Pod uses a ResourceClaim that has not been allocated yet.
* Setting this field is optional. If null, all nodes are candidates.
*/
@JvmName("ipbgnnajhweauvan")
public suspend fun suitableNodes(`value`: NodeSelectorArgs?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.suitableNodes = mapped
}
/**
* @param argument Only nodes matching the selector will be considered by the scheduler when trying to find a Node that fits a Pod when that Pod uses a ResourceClaim that has not been allocated yet.
* Setting this field is optional. If null, all nodes are candidates.
*/
@JvmName("soxxemjomdfmbpcm")
public suspend fun suitableNodes(argument: suspend NodeSelectorArgsBuilder.() -> Unit) {
val toBeMapped = NodeSelectorArgsBuilder().applySuspend { argument() }.build()
val mapped = of(toBeMapped)
this.suitableNodes = mapped
}
internal fun build(): ResourceClassArgs = ResourceClassArgs(
apiVersion = apiVersion,
driverName = driverName ?: throw PulumiNullFieldException("driverName"),
kind = kind,
metadata = metadata,
parametersRef = parametersRef,
structuredParameters = structuredParameters,
suitableNodes = suitableNodes,
)
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy