com.pulumi.kubernetes.resource.v1alpha2.kotlin.inputs.ResourceSliceArgs.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.meta.v1.kotlin.inputs.ObjectMetaArgs
import com.pulumi.kubernetes.meta.v1.kotlin.inputs.ObjectMetaArgsBuilder
import com.pulumi.kubernetes.resource.v1alpha2.inputs.ResourceSliceArgs.builder
import kotlin.String
import kotlin.Suppress
import kotlin.Unit
import kotlin.jvm.JvmName
/**
* ResourceSlice provides information about available resources on individual nodes.
* @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 identifies the DRA driver providing the capacity information. A field selector can be used to list only ResourceSlice objects with a certain driver name.
* @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 namedResources NamedResources describes available resources using the named resources model.
* @property nodeName NodeName identifies the node which provides the resources if they are local to a node.
* A field selector can be used to list only ResourceSlice objects with a certain node name.
*/
public data class ResourceSliceArgs(
public val apiVersion: Output? = null,
public val driverName: Output,
public val kind: Output? = null,
public val metadata: Output? = null,
public val namedResources: Output? = null,
public val nodeName: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.kubernetes.resource.v1alpha2.inputs.ResourceSliceArgs =
com.pulumi.kubernetes.resource.v1alpha2.inputs.ResourceSliceArgs.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() }) }))
.namedResources(namedResources?.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) }))
.nodeName(nodeName?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [ResourceSliceArgs].
*/
@PulumiTagMarker
public class ResourceSliceArgsBuilder internal constructor() {
private var apiVersion: Output? = null
private var driverName: Output? = null
private var kind: Output? = null
private var metadata: Output? = null
private var namedResources: Output? = null
private var nodeName: 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("qsbnhalqeguhdnym")
public suspend fun apiVersion(`value`: Output) {
this.apiVersion = value
}
/**
* @param value DriverName identifies the DRA driver providing the capacity information. A field selector can be used to list only ResourceSlice objects with a certain driver name.
*/
@JvmName("cokivytcojoqyuxx")
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("tjnpuugxqhlshqqj")
public suspend fun kind(`value`: Output) {
this.kind = value
}
/**
* @param value Standard object metadata
*/
@JvmName("oftifpxbbntcyouy")
public suspend fun metadata(`value`: Output) {
this.metadata = value
}
/**
* @param value NamedResources describes available resources using the named resources model.
*/
@JvmName("xlqscdvjjsaeuvxj")
public suspend fun namedResources(`value`: Output) {
this.namedResources = value
}
/**
* @param value NodeName identifies the node which provides the resources if they are local to a node.
* A field selector can be used to list only ResourceSlice objects with a certain node name.
*/
@JvmName("vpboqhejedhjyadp")
public suspend fun nodeName(`value`: Output) {
this.nodeName = 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("dckklhglsykvymav")
public suspend fun apiVersion(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.apiVersion = mapped
}
/**
* @param value DriverName identifies the DRA driver providing the capacity information. A field selector can be used to list only ResourceSlice objects with a certain driver name.
*/
@JvmName("chfuadrubqxwnvuk")
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("wueopposhxuveioc")
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("mrmrnepyjiaubbwg")
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("jlygxysqynjegryl")
public suspend fun metadata(argument: suspend ObjectMetaArgsBuilder.() -> Unit) {
val toBeMapped = ObjectMetaArgsBuilder().applySuspend { argument() }.build()
val mapped = of(toBeMapped)
this.metadata = mapped
}
/**
* @param value NamedResources describes available resources using the named resources model.
*/
@JvmName("mjghltjiprxdqaje")
public suspend fun namedResources(`value`: NamedResourcesResourcesArgs?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.namedResources = mapped
}
/**
* @param argument NamedResources describes available resources using the named resources model.
*/
@JvmName("cwrjkoqotqtchjio")
public suspend fun namedResources(argument: suspend NamedResourcesResourcesArgsBuilder.() -> Unit) {
val toBeMapped = NamedResourcesResourcesArgsBuilder().applySuspend { argument() }.build()
val mapped = of(toBeMapped)
this.namedResources = mapped
}
/**
* @param value NodeName identifies the node which provides the resources if they are local to a node.
* A field selector can be used to list only ResourceSlice objects with a certain node name.
*/
@JvmName("wesnadvfisfcpgui")
public suspend fun nodeName(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.nodeName = mapped
}
internal fun build(): ResourceSliceArgs = ResourceSliceArgs(
apiVersion = apiVersion,
driverName = driverName ?: throw PulumiNullFieldException("driverName"),
kind = kind,
metadata = metadata,
namedResources = namedResources,
nodeName = nodeName,
)
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy