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

com.pulumi.kubernetes.extensions.v1beta1.kotlin.inputs.RunAsUserStrategyOptionsArgs.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.

The newest version!
@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.PulumiNullFieldException
import com.pulumi.kotlin.PulumiTagMarker
import com.pulumi.kotlin.applySuspend
import com.pulumi.kubernetes.extensions.v1beta1.inputs.RunAsUserStrategyOptionsArgs.builder
import kotlin.String
import kotlin.Suppress
import kotlin.Unit
import kotlin.collections.List
import kotlin.jvm.JvmName

/**
 * RunAsUserStrategyOptions defines the strategy type and any options used to create the strategy. Deprecated: use RunAsUserStrategyOptions from policy API Group instead.
 * @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 RunAsUserStrategyOptionsArgs(
    public val ranges: Output>? = null,
    public val rule: Output,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.kubernetes.extensions.v1beta1.inputs.RunAsUserStrategyOptionsArgs =
        com.pulumi.kubernetes.extensions.v1beta1.inputs.RunAsUserStrategyOptionsArgs.builder()
            .ranges(ranges?.applyValue({ args0 -> args0.map({ args0 -> args0.let({ args0 -> args0.toJava() }) }) }))
            .rule(rule.applyValue({ args0 -> args0 })).build()
}

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

    private var rule: Output? = null

    /**
     * @param value 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.
     */
    @JvmName("nqiilwkmhhpigkac")
    public suspend fun ranges(`value`: Output>) {
        this.ranges = value
    }

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

    /**
     * @param values 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.
     */
    @JvmName("ebhkpugtbqmsmmeb")
    public suspend fun ranges(values: List>) {
        this.ranges = Output.all(values)
    }

    /**
     * @param value rule is the strategy that will dictate the allowable RunAsUser values that may be set.
     */
    @JvmName("tuhasfjshhhkuvcw")
    public suspend fun rule(`value`: Output) {
        this.rule = value
    }

    /**
     * @param value 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.
     */
    @JvmName("ofpjqklqetqfwamy")
    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 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.
     */
    @JvmName("lymalitbataetbbx")
    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 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.
     */
    @JvmName("fwlwrhwcddjnpblw")
    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 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.
     */
    @JvmName("lrwqxwmxmchbddki")
    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 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.
     */
    @JvmName("mwsrttfaiwiwmcfe")
    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 the allowable RunAsUser values that may be set.
     */
    @JvmName("iiwjumgfckyothqg")
    public suspend fun rule(`value`: String) {
        val toBeMapped = value
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.rule = mapped
    }

    internal fun build(): RunAsUserStrategyOptionsArgs = RunAsUserStrategyOptionsArgs(
        ranges = ranges,
        rule = rule ?: throw PulumiNullFieldException("rule"),
    )
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy