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

com.pulumi.gcp.gkeonprem.kotlin.inputs.VMwareClusterAuthorizationArgs.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: 8.10.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.gcp.gkeonprem.kotlin.inputs

import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.gcp.gkeonprem.inputs.VMwareClusterAuthorizationArgs.builder
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import com.pulumi.kotlin.applySuspend
import kotlin.Suppress
import kotlin.Unit
import kotlin.collections.List
import kotlin.jvm.JvmName

/**
 *
 * @property adminUsers Users that will be granted the cluster-admin role on the cluster, providing
 * full access to the cluster.
 * Structure is documented below.
 */
public data class VMwareClusterAuthorizationArgs(
    public val adminUsers: Output>? = null,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.gcp.gkeonprem.inputs.VMwareClusterAuthorizationArgs =
        com.pulumi.gcp.gkeonprem.inputs.VMwareClusterAuthorizationArgs.builder()
            .adminUsers(
                adminUsers?.applyValue({ args0 ->
                    args0.map({ args0 ->
                        args0.let({ args0 ->
                            args0.toJava()
                        })
                    })
                }),
            ).build()
}

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

    /**
     * @param value Users that will be granted the cluster-admin role on the cluster, providing
     * full access to the cluster.
     * Structure is documented below.
     */
    @JvmName("heepgafuknfrbyxy")
    public suspend fun adminUsers(`value`: Output>) {
        this.adminUsers = value
    }

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

    /**
     * @param values Users that will be granted the cluster-admin role on the cluster, providing
     * full access to the cluster.
     * Structure is documented below.
     */
    @JvmName("gncwjwtwsegioxlg")
    public suspend fun adminUsers(values: List>) {
        this.adminUsers = Output.all(values)
    }

    /**
     * @param value Users that will be granted the cluster-admin role on the cluster, providing
     * full access to the cluster.
     * Structure is documented below.
     */
    @JvmName("viwqqltktduweomh")
    public suspend fun adminUsers(`value`: List?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.adminUsers = mapped
    }

    /**
     * @param argument Users that will be granted the cluster-admin role on the cluster, providing
     * full access to the cluster.
     * Structure is documented below.
     */
    @JvmName("oosxxgrcjnbdujsb")
    public suspend fun adminUsers(argument: List Unit>) {
        val toBeMapped = argument.toList().map {
            VMwareClusterAuthorizationAdminUserArgsBuilder().applySuspend { it() }.build()
        }
        val mapped = of(toBeMapped)
        this.adminUsers = mapped
    }

    /**
     * @param argument Users that will be granted the cluster-admin role on the cluster, providing
     * full access to the cluster.
     * Structure is documented below.
     */
    @JvmName("opjjtwxnrvrdrsdv")
    public suspend fun adminUsers(vararg argument: suspend VMwareClusterAuthorizationAdminUserArgsBuilder.() -> Unit) {
        val toBeMapped = argument.toList().map {
            VMwareClusterAuthorizationAdminUserArgsBuilder().applySuspend { it() }.build()
        }
        val mapped = of(toBeMapped)
        this.adminUsers = mapped
    }

    /**
     * @param argument Users that will be granted the cluster-admin role on the cluster, providing
     * full access to the cluster.
     * Structure is documented below.
     */
    @JvmName("osfogpjocvxjdhwo")
    public suspend fun adminUsers(argument: suspend VMwareClusterAuthorizationAdminUserArgsBuilder.() -> Unit) {
        val toBeMapped = listOf(
            VMwareClusterAuthorizationAdminUserArgsBuilder().applySuspend {
                argument()
            }.build(),
        )
        val mapped = of(toBeMapped)
        this.adminUsers = mapped
    }

    /**
     * @param values Users that will be granted the cluster-admin role on the cluster, providing
     * full access to the cluster.
     * Structure is documented below.
     */
    @JvmName("ofciggsungtksfms")
    public suspend fun adminUsers(vararg values: VMwareClusterAuthorizationAdminUserArgs) {
        val toBeMapped = values.toList()
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.adminUsers = mapped
    }

    internal fun build(): VMwareClusterAuthorizationArgs = VMwareClusterAuthorizationArgs(
        adminUsers = adminUsers,
    )
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy