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

com.pulumi.cloudflare.kotlin.inputs.AccessPolicyRequireGithubArgs.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.cloudflare.kotlin.inputs

import com.pulumi.cloudflare.inputs.AccessPolicyRequireGithubArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
import kotlin.jvm.JvmName

/**
 *
 * @property identityProviderId The ID of your Github identity provider.
 * @property name The name of the organization.
 * @property teams The teams that should be matched.
 */
public data class AccessPolicyRequireGithubArgs(
    public val identityProviderId: Output? = null,
    public val name: Output? = null,
    public val teams: Output>? = null,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.cloudflare.inputs.AccessPolicyRequireGithubArgs =
        com.pulumi.cloudflare.inputs.AccessPolicyRequireGithubArgs.builder()
            .identityProviderId(identityProviderId?.applyValue({ args0 -> args0 }))
            .name(name?.applyValue({ args0 -> args0 }))
            .teams(teams?.applyValue({ args0 -> args0.map({ args0 -> args0 }) })).build()
}

/**
 * Builder for [AccessPolicyRequireGithubArgs].
 */
@PulumiTagMarker
public class AccessPolicyRequireGithubArgsBuilder internal constructor() {
    private var identityProviderId: Output? = null

    private var name: Output? = null

    private var teams: Output>? = null

    /**
     * @param value The ID of your Github identity provider.
     */
    @JvmName("vcdgmwtjifaykbjy")
    public suspend fun identityProviderId(`value`: Output) {
        this.identityProviderId = value
    }

    /**
     * @param value The name of the organization.
     */
    @JvmName("juhqeqtkfhagpnsm")
    public suspend fun name(`value`: Output) {
        this.name = value
    }

    /**
     * @param value The teams that should be matched.
     */
    @JvmName("xqyijdsjifqtsvxl")
    public suspend fun teams(`value`: Output>) {
        this.teams = value
    }

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

    /**
     * @param values The teams that should be matched.
     */
    @JvmName("kyebfyfqkmmdsgoq")
    public suspend fun teams(values: List>) {
        this.teams = Output.all(values)
    }

    /**
     * @param value The ID of your Github identity provider.
     */
    @JvmName("bcjddrgpycvjiqmv")
    public suspend fun identityProviderId(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.identityProviderId = mapped
    }

    /**
     * @param value The name of the organization.
     */
    @JvmName("wsqsgvsotfwrnaak")
    public suspend fun name(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.name = mapped
    }

    /**
     * @param value The teams that should be matched.
     */
    @JvmName("clhwnfhgilckiroq")
    public suspend fun teams(`value`: List?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.teams = mapped
    }

    /**
     * @param values The teams that should be matched.
     */
    @JvmName("ppwpeqxwdprdruug")
    public suspend fun teams(vararg values: String) {
        val toBeMapped = values.toList()
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.teams = mapped
    }

    internal fun build(): AccessPolicyRequireGithubArgs = AccessPolicyRequireGithubArgs(
        identityProviderId = identityProviderId,
        name = name,
        teams = teams,
    )
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy