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

com.pulumi.azurenative.migrate.kotlin.inputs.WebApplicationFrameworkArgs.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: 2.82.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.azurenative.migrate.kotlin.inputs

import com.pulumi.azurenative.migrate.inputs.WebApplicationFrameworkArgs.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.jvm.JvmName

/**
 * Framework specific data for a web application.
 * @property name Gets or sets Name of the framework.
 * @property version Gets or sets Version of the framework.
 */
public data class WebApplicationFrameworkArgs(
    public val name: Output? = null,
    public val version: Output? = null,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.azurenative.migrate.inputs.WebApplicationFrameworkArgs =
        com.pulumi.azurenative.migrate.inputs.WebApplicationFrameworkArgs.builder()
            .name(name?.applyValue({ args0 -> args0 }))
            .version(version?.applyValue({ args0 -> args0 })).build()
}

/**
 * Builder for [WebApplicationFrameworkArgs].
 */
@PulumiTagMarker
public class WebApplicationFrameworkArgsBuilder internal constructor() {
    private var name: Output? = null

    private var version: Output? = null

    /**
     * @param value Gets or sets Name of the framework.
     */
    @JvmName("cmmwvckvxqsiigoh")
    public suspend fun name(`value`: Output) {
        this.name = value
    }

    /**
     * @param value Gets or sets Version of the framework.
     */
    @JvmName("jmnokvluashnmtwm")
    public suspend fun version(`value`: Output) {
        this.version = value
    }

    /**
     * @param value Gets or sets Name of the framework.
     */
    @JvmName("mwrpwogfcdikadka")
    public suspend fun name(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.name = mapped
    }

    /**
     * @param value Gets or sets Version of the framework.
     */
    @JvmName("xmqksnqheijxtast")
    public suspend fun version(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.version = mapped
    }

    internal fun build(): WebApplicationFrameworkArgs = WebApplicationFrameworkArgs(
        name = name,
        version = version,
    )
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy