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

com.pulumi.azure.appservice.kotlin.inputs.GetSourceControlTokenPlainArgs.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: 6.15.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.azure.appservice.kotlin.inputs

import com.pulumi.azure.appservice.inputs.GetSourceControlTokenPlainArgs.builder
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiNullFieldException
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName

/**
 * A collection of arguments for invoking getSourceControlToken.
 * @property type The Token type. Possible values include `Bitbucket`, `Dropbox`, `Github`, and `OneDrive`.
 */
public data class GetSourceControlTokenPlainArgs(
    public val type: String,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.azure.appservice.inputs.GetSourceControlTokenPlainArgs =
        com.pulumi.azure.appservice.inputs.GetSourceControlTokenPlainArgs.builder()
            .type(type.let({ args0 -> args0 })).build()
}

/**
 * Builder for [GetSourceControlTokenPlainArgs].
 */
@PulumiTagMarker
public class GetSourceControlTokenPlainArgsBuilder internal constructor() {
    private var type: String? = null

    /**
     * @param value The Token type. Possible values include `Bitbucket`, `Dropbox`, `Github`, and `OneDrive`.
     */
    @JvmName("phdeilsqhniibwmt")
    public suspend fun type(`value`: String) {
        val toBeMapped = value
        val mapped = toBeMapped.let({ args0 -> args0 })
        this.type = mapped
    }

    internal fun build(): GetSourceControlTokenPlainArgs = GetSourceControlTokenPlainArgs(
        type = type ?: throw PulumiNullFieldException("type"),
    )
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy