com.pulumi.kubernetes.resource.v1alpha1.kotlin.inputs.ResourceClaimStatusArgs.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.
@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.kotlin.applySuspend
import com.pulumi.kubernetes.resource.v1alpha1.inputs.ResourceClaimStatusArgs.builder
import kotlin.Boolean
import kotlin.String
import kotlin.Suppress
import kotlin.Unit
import kotlin.collections.List
import kotlin.jvm.JvmName
/**
* ResourceClaimStatus tracks whether the resource has been allocated and what the resulting attributes are.
* @property allocation Allocation is set by the resource driver once a resource has been allocated successfully. If this is not specified, the resource is not yet allocated.
* @property deallocationRequested DeallocationRequested indicates that a ResourceClaim is to be deallocated.
* The driver then must deallocate this claim and reset the field together with clearing the Allocation field.
* While DeallocationRequested is set, no new consumers may be added to ReservedFor.
* @property driverName DriverName is a copy of the driver name from the ResourceClass at the time when allocation started.
* @property reservedFor ReservedFor indicates which entities are currently allowed to use the claim. A Pod which references a ResourceClaim which is not reserved for that Pod will not be started.
* There can be at most 32 such reservations. This may get increased in the future, but not reduced.
*/
public data class ResourceClaimStatusArgs(
public val allocation: Output? = null,
public val deallocationRequested: Output? = null,
public val driverName: Output? = null,
public val reservedFor: Output>? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.kubernetes.resource.v1alpha1.inputs.ResourceClaimStatusArgs =
com.pulumi.kubernetes.resource.v1alpha1.inputs.ResourceClaimStatusArgs.builder()
.allocation(allocation?.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) }))
.deallocationRequested(deallocationRequested?.applyValue({ args0 -> args0 }))
.driverName(driverName?.applyValue({ args0 -> args0 }))
.reservedFor(
reservedFor?.applyValue({ args0 ->
args0.map({ args0 ->
args0.let({ args0 ->
args0.toJava()
})
})
}),
).build()
}
/**
* Builder for [ResourceClaimStatusArgs].
*/
@PulumiTagMarker
public class ResourceClaimStatusArgsBuilder internal constructor() {
private var allocation: Output? = null
private var deallocationRequested: Output? = null
private var driverName: Output? = null
private var reservedFor: Output>? = null
/**
* @param value Allocation is set by the resource driver once a resource has been allocated successfully. If this is not specified, the resource is not yet allocated.
*/
@JvmName("qoaroqcfnsvxloxb")
public suspend fun allocation(`value`: Output) {
this.allocation = value
}
/**
* @param value DeallocationRequested indicates that a ResourceClaim is to be deallocated.
* The driver then must deallocate this claim and reset the field together with clearing the Allocation field.
* While DeallocationRequested is set, no new consumers may be added to ReservedFor.
*/
@JvmName("yetsvrwdopotayry")
public suspend fun deallocationRequested(`value`: Output) {
this.deallocationRequested = value
}
/**
* @param value DriverName is a copy of the driver name from the ResourceClass at the time when allocation started.
*/
@JvmName("xxlhyrrvoicfmfsx")
public suspend fun driverName(`value`: Output) {
this.driverName = value
}
/**
* @param value ReservedFor indicates which entities are currently allowed to use the claim. A Pod which references a ResourceClaim which is not reserved for that Pod will not be started.
* There can be at most 32 such reservations. This may get increased in the future, but not reduced.
*/
@JvmName("yrhcgbxvjuocjuum")
public suspend fun reservedFor(`value`: Output>) {
this.reservedFor = value
}
@JvmName("iawcksxonddicvko")
public suspend fun reservedFor(vararg values: Output) {
this.reservedFor = Output.all(values.asList())
}
/**
* @param values ReservedFor indicates which entities are currently allowed to use the claim. A Pod which references a ResourceClaim which is not reserved for that Pod will not be started.
* There can be at most 32 such reservations. This may get increased in the future, but not reduced.
*/
@JvmName("gxleeyhnvpbutxap")
public suspend fun reservedFor(values: List
© 2015 - 2024 Weber Informatics LLC | Privacy Policy