All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.kubernetes.policy.v1beta1.kotlin.inputs.FSGroupStrategyOptionsArgs.kt Maven / Gradle / Ivy

Go to download

Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.

There is a newer version: 4.18.2.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.kubernetes.policy.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.policy.v1beta1.inputs.FSGroupStrategyOptionsArgs.builder
import kotlin.String
import kotlin.Suppress
import kotlin.Unit
import kotlin.collections.List
import kotlin.jvm.JvmName

/**
 * FSGroupStrategyOptions defines the strategy type and options used to create the strategy.
 * @property ranges ranges are the allowed ranges of fs groups.  If you would like to force a single fs 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 FSGroup is used in the SecurityContext.
 */
public data class FSGroupStrategyOptionsArgs(
    public val ranges: Output>? = null,
    public val rule: Output? = null,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.kubernetes.policy.v1beta1.inputs.FSGroupStrategyOptionsArgs =
        com.pulumi.kubernetes.policy.v1beta1.inputs.FSGroupStrategyOptionsArgs.builder()
            .ranges(ranges?.applyValue({ args0 -> args0.map({ args0 -> args0.let({ args0 -> args0.toJava() }) }) }))
            .rule(rule?.applyValue({ args0 -> args0 })).build()
}

/**
 * Builder for [FSGroupStrategyOptionsArgs].
 */
@PulumiTagMarker
public class FSGroupStrategyOptionsArgsBuilder internal constructor() {
    private var ranges: Output>? = null

    private var rule: Output? = null

    /**
     * @param value ranges are the allowed ranges of fs groups.  If you would like to force a single fs group then supply a single range with the same start and end. Required for MustRunAs.
     */
    @JvmName("eolpbungbieyvgir")
    public suspend fun ranges(`value`: Output>) {
        this.ranges = value
    }

    @JvmName("nnqjmovfnbjhtygd")
    public suspend fun ranges(vararg values: Output) {
        this.ranges = Output.all(values.asList())
    }

    /**
     * @param values ranges are the allowed ranges of fs groups.  If you would like to force a single fs group then supply a single range with the same start and end. Required for MustRunAs.
     */
    @JvmName("xyulynhigvgkkmvu")
    public suspend fun ranges(values: List>) {
        this.ranges = Output.all(values)
    }

    /**
     * @param value rule is the strategy that will dictate what FSGroup is used in the SecurityContext.
     */
    @JvmName("nuuqxcpoupbcosan")
    public suspend fun rule(`value`: Output) {
        this.rule = value
    }

    /**
     * @param value ranges are the allowed ranges of fs groups.  If you would like to force a single fs group then supply a single range with the same start and end. Required for MustRunAs.
     */
    @JvmName("eelnnqdgoiumbxwj")
    public suspend fun ranges(`value`: List?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.ranges = mapped
    }

    /**
     * @param argument ranges are the allowed ranges of fs groups.  If you would like to force a single fs group then supply a single range with the same start and end. Required for MustRunAs.
     */
    @JvmName("qinqdahxtbgbyghx")
    public suspend fun ranges(argument: List Unit>) {
        val toBeMapped = argument.toList().map { IDRangeArgsBuilder().applySuspend { it() }.build() }
        val mapped = of(toBeMapped)
        this.ranges = mapped
    }

    /**
     * @param argument ranges are the allowed ranges of fs groups.  If you would like to force a single fs group then supply a single range with the same start and end. Required for MustRunAs.
     */
    @JvmName("jyxffagordmkattt")
    public suspend fun ranges(vararg argument: suspend IDRangeArgsBuilder.() -> Unit) {
        val toBeMapped = argument.toList().map { IDRangeArgsBuilder().applySuspend { it() }.build() }
        val mapped = of(toBeMapped)
        this.ranges = mapped
    }

    /**
     * @param argument ranges are the allowed ranges of fs groups.  If you would like to force a single fs group then supply a single range with the same start and end. Required for MustRunAs.
     */
    @JvmName("gpnnbqdapthvseyh")
    public suspend fun ranges(argument: suspend IDRangeArgsBuilder.() -> Unit) {
        val toBeMapped = listOf(IDRangeArgsBuilder().applySuspend { argument() }.build())
        val mapped = of(toBeMapped)
        this.ranges = mapped
    }

    /**
     * @param values ranges are the allowed ranges of fs groups.  If you would like to force a single fs group then supply a single range with the same start and end. Required for MustRunAs.
     */
    @JvmName("toijmeigmbtxubaq")
    public suspend fun ranges(vararg values: IDRangeArgs) {
        val toBeMapped = values.toList()
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.ranges = mapped
    }

    /**
     * @param value rule is the strategy that will dictate what FSGroup is used in the SecurityContext.
     */
    @JvmName("qhgcpvwwameiwhnx")
    public suspend fun rule(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.rule = mapped
    }

    internal fun build(): FSGroupStrategyOptionsArgs = FSGroupStrategyOptionsArgs(
        ranges = ranges,
        rule = rule,
    )
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy