All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.kubernetes.resource.v1alpha1.kotlin.inputs.ResourceClassArgs.kt Maven / Gradle / Ivy

Go to download

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.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.v1alpha1.inputs.ResourceClassArgs.builder
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 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 suitableNodes: Output? = null,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.kubernetes.resource.v1alpha1.inputs.ResourceClassArgs =
        com.pulumi.kubernetes.resource.v1alpha1.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() }) }))
            .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 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("vsjvhingvfweqqfy")
    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("lfqlyiihbrhqmsep")
    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("ujcyjoghopdfxcsh")
    public suspend fun kind(`value`: Output) {
        this.kind = value
    }

    /**
     * @param value Standard object metadata
     */
    @JvmName("lxakbdwkbhldwbsu")
    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("vujpjwtbmvnvtsib")
    public suspend fun parametersRef(`value`: Output) {
        this.parametersRef = 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("wntagirwohfcwney")
    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("mfpjgpdcadsgdnkh")
    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("xkybjxywvyverqax")
    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("sdlodtqpkirremfn")
    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("dqjxidmxsvgukoll")
    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("srisdalghhiigogv")
    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("wsrgksdsoyynfytu")
    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("hmsxxvydshtqjfti")
    public suspend fun parametersRef(argument: suspend ResourceClassParametersReferenceArgsBuilder.() -> Unit) {
        val toBeMapped = ResourceClassParametersReferenceArgsBuilder().applySuspend {
            argument()
        }.build()
        val mapped = of(toBeMapped)
        this.parametersRef = 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("pmvbjegaufkjcwyl")
    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("phugmrgingajiqno")
    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,
        suitableNodes = suitableNodes,
    )
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy