com.pulumi.kubernetes.resource.v1alpha2.kotlin.ResourceSlicePatchArgs.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
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import com.pulumi.kotlin.applySuspend
import com.pulumi.kubernetes.meta.v1.kotlin.inputs.ObjectMetaPatchArgs
import com.pulumi.kubernetes.meta.v1.kotlin.inputs.ObjectMetaPatchArgsBuilder
import com.pulumi.kubernetes.resource.v1alpha2.ResourceSlicePatchArgs.builder
import com.pulumi.kubernetes.resource.v1alpha2.kotlin.inputs.NamedResourcesResourcesPatchArgs
import com.pulumi.kubernetes.resource.v1alpha2.kotlin.inputs.NamedResourcesResourcesPatchArgsBuilder
import kotlin.String
import kotlin.Suppress
import kotlin.Unit
import kotlin.jvm.JvmName
/**
* Patch resources are used to modify existing Kubernetes resources by using
* Server-Side Apply updates. The name of the resource must be specified, but all other properties are optional. More than
* one patch may be applied to the same resource, and a random FieldManager name will be used for each Patch resource.
* Conflicts will result in an error by default, but can be forced using the "pulumi.com/patchForce" annotation. See the
* [Server-Side Apply Docs](https://www.pulumi.com/registry/packages/kubernetes/how-to-guides/managing-resources-with-server-side-apply/) for
* additional information about using Server-Side Apply to manage Kubernetes resources with Pulumi.
* 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 ResourceSlicePatchArgs(
public val apiVersion: Output? = null,
public val driverName: Output? = null,
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.ResourceSlicePatchArgs =
com.pulumi.kubernetes.resource.v1alpha2.ResourceSlicePatchArgs.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 [ResourceSlicePatchArgs].
*/
@PulumiTagMarker
public class ResourceSlicePatchArgsBuilder 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("cmpgnbhyekspnvfk")
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("ptgefrasmfrejjkj")
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("udnnxyduhjxrrqph")
public suspend fun kind(`value`: Output) {
this.kind = value
}
/**
* @param value Standard object metadata
*/
@JvmName("gmertineiredrppd")
public suspend fun metadata(`value`: Output) {
this.metadata = value
}
/**
* @param value NamedResources describes available resources using the named resources model.
*/
@JvmName("jfucavggutqdnstc")
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("bmwoibesjqcgqkul")
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("nworlwutismpsnby")
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("tpwoanamyqldghvy")
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("qsxdolwntgyrmkpf")
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("jkhulaarrdyhyjsx")
public suspend fun metadata(`value`: ObjectMetaPatchArgs?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.metadata = mapped
}
/**
* @param argument Standard object metadata
*/
@JvmName("sorsbcbhcboscgyn")
public suspend fun metadata(argument: suspend ObjectMetaPatchArgsBuilder.() -> Unit) {
val toBeMapped = ObjectMetaPatchArgsBuilder().applySuspend { argument() }.build()
val mapped = of(toBeMapped)
this.metadata = mapped
}
/**
* @param value NamedResources describes available resources using the named resources model.
*/
@JvmName("ooypifgaydswbgax")
public suspend fun namedResources(`value`: NamedResourcesResourcesPatchArgs?) {
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("adkseqpvmftbktue")
public suspend fun namedResources(argument: suspend NamedResourcesResourcesPatchArgsBuilder.() -> Unit) {
val toBeMapped = NamedResourcesResourcesPatchArgsBuilder().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("qsymfufewijsgvbm")
public suspend fun nodeName(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.nodeName = mapped
}
internal fun build(): ResourceSlicePatchArgs = ResourceSlicePatchArgs(
apiVersion = apiVersion,
driverName = driverName,
kind = kind,
metadata = metadata,
namedResources = namedResources,
nodeName = nodeName,
)
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy