com.pulumi.kubernetes.resource.v1alpha2.kotlin.outputs.NamedResourcesRequestPatch.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.outputs
import kotlin.String
import kotlin.Suppress
/**
* NamedResourcesRequest is used in ResourceRequestModel.
* @property selector Selector is a CEL expression which must evaluate to true if a resource instance is suitable. The language is as defined in https://kubernetes.io/docs/reference/using-api/cel/
* In addition, for each type NamedResourcesin AttributeValue there is a map that resolves to the corresponding value of the instance under evaluation. For example:
* attributes.quantity["a"].isGreaterThan(quantity("0")) &&
* attributes.stringslice["b"].isSorted()
*/
public data class NamedResourcesRequestPatch(
public val selector: String? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.kubernetes.resource.v1alpha2.outputs.NamedResourcesRequestPatch): NamedResourcesRequestPatch = NamedResourcesRequestPatch(
selector = javaType.selector().map({ args0 -> args0 }).orElse(null),
)
}
}