com.pulumi.kubernetes.policy.v1beta1.kotlin.outputs.RunAsUserStrategyOptionsPatch.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.policy.v1beta1.kotlin.outputs
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
/**
* RunAsUserStrategyOptions defines the strategy type and any options used to create the strategy.
* @property ranges ranges are the allowed ranges of uids that may be used. If you would like to force a single uid then supply a single range with the same start and end. Required for MustRunAs.
* @property rule rule is the strategy that will dictate the allowable RunAsUser values that may be set.
*/
public data class RunAsUserStrategyOptionsPatch(
public val ranges: List? = null,
public val rule: String? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.kubernetes.policy.v1beta1.outputs.RunAsUserStrategyOptionsPatch): RunAsUserStrategyOptionsPatch = RunAsUserStrategyOptionsPatch(
ranges = javaType.ranges().map({ args0 ->
args0.let({ args0 ->
com.pulumi.kubernetes.policy.v1beta1.kotlin.outputs.IDRangePatch.Companion.toKotlin(args0)
})
}),
rule = javaType.rule().map({ args0 -> args0 }).orElse(null),
)
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy