com.pulumi.kubernetes.extensions.v1beta1.kotlin.inputs.SupplementalGroupsStrategyOptionsPatchArgs.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.extensions.v1beta1.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.extensions.v1beta1.inputs.SupplementalGroupsStrategyOptionsPatchArgs.builder
import kotlin.String
import kotlin.Suppress
import kotlin.Unit
import kotlin.collections.List
import kotlin.jvm.JvmName
/**
* SupplementalGroupsStrategyOptions defines the strategy type and options used to create the strategy. Deprecated: use SupplementalGroupsStrategyOptions from policy API Group instead.
* @property ranges ranges are the allowed ranges of supplemental groups. If you would like to force a single supplemental group then supply a single range with the same start and end. Required for MustRunAs.
* @property rule rule is the strategy that will dictate what supplemental groups is used in the SecurityContext.
*/
public data class SupplementalGroupsStrategyOptionsPatchArgs(
public val ranges: Output>? = null,
public val rule: Output? = null,
) :
ConvertibleToJava {
override fun toJava(): com.pulumi.kubernetes.extensions.v1beta1.inputs.SupplementalGroupsStrategyOptionsPatchArgs =
com.pulumi.kubernetes.extensions.v1beta1.inputs.SupplementalGroupsStrategyOptionsPatchArgs.builder()
.ranges(ranges?.applyValue({ args0 -> args0.map({ args0 -> args0.let({ args0 -> args0.toJava() }) }) }))
.rule(rule?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [SupplementalGroupsStrategyOptionsPatchArgs].
*/
@PulumiTagMarker
public class SupplementalGroupsStrategyOptionsPatchArgsBuilder internal constructor() {
private var ranges: Output>? = null
private var rule: Output? = null
/**
* @param value ranges are the allowed ranges of supplemental groups. If you would like to force a single supplemental group then supply a single range with the same start and end. Required for MustRunAs.
*/
@JvmName("gwciigdcgambjaoq")
public suspend fun ranges(`value`: Output>) {
this.ranges = value
}
@JvmName("rjgmknhbfdjnvdsk")
public suspend fun ranges(vararg values: Output) {
this.ranges = Output.all(values.asList())
}
/**
* @param values ranges are the allowed ranges of supplemental groups. If you would like to force a single supplemental group then supply a single range with the same start and end. Required for MustRunAs.
*/
@JvmName("yejkaccffiylcdpg")
public suspend fun ranges(values: List
© 2015 - 2024 Weber Informatics LLC | Privacy Policy