com.pulumi.kubernetes.resource.v1alpha3.kotlin.outputs.DeviceConstraintPatch.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.v1alpha3.kotlin.outputs
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
/**
* DeviceConstraint must have exactly one field set besides Requests.
* @property matchAttribute MatchAttribute requires that all devices in question have this attribute and that its type and value are the same across those devices.
* For example, if you specified "dra.example.com/numa" (a hypothetical example!), then only devices in the same NUMA node will be chosen. A device which does not have that attribute will not be chosen. All devices should use a value of the same type for this attribute because that is part of its specification, but if one device doesn't, then it also will not be chosen.
* Must include the domain qualifier.
* @property requests Requests is a list of the one or more requests in this claim which must co-satisfy this constraint. If a request is fulfilled by multiple devices, then all of the devices must satisfy the constraint. If this is not specified, this constraint applies to all requests in this claim.
*/
public data class DeviceConstraintPatch(
public val matchAttribute: String? = null,
public val requests: List? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.kubernetes.resource.v1alpha3.outputs.DeviceConstraintPatch): DeviceConstraintPatch = DeviceConstraintPatch(
matchAttribute = javaType.matchAttribute().map({ args0 -> args0 }).orElse(null),
requests = javaType.requests().map({ args0 -> args0 }),
)
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy