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

com.pulumi.azurenative.databricks.kotlin.inputs.WorkspaceCustomStringParameterArgs.kt Maven / Gradle / Ivy

@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.azurenative.databricks.kotlin.inputs

import com.pulumi.azurenative.databricks.inputs.WorkspaceCustomStringParameterArgs.builder
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 kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName

/**
 * The Value.
 * @property value The value which should be used for this field.
 */
public data class WorkspaceCustomStringParameterArgs(
    public val `value`: Output,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.azurenative.databricks.inputs.WorkspaceCustomStringParameterArgs = com.pulumi.azurenative.databricks.inputs.WorkspaceCustomStringParameterArgs.builder()
        .`value`(`value`.applyValue({ args0 -> args0 })).build()
}

/**
 * Builder for [WorkspaceCustomStringParameterArgs].
 */
@PulumiTagMarker
public class WorkspaceCustomStringParameterArgsBuilder internal constructor() {
    private var `value`: Output? = null

    /**
     * @param value The value which should be used for this field.
     */
    @JvmName("lncwylsjuxyqhcfa")
    public suspend fun `value`(`value`: Output) {
        this.`value` = value
    }

    /**
     * @param value The value which should be used for this field.
     */
    @JvmName("sxflqbyuwpjsdoas")
    public suspend fun `value`(`value`: String) {
        val toBeMapped = value
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.`value` = mapped
    }

    internal fun build(): WorkspaceCustomStringParameterArgs = WorkspaceCustomStringParameterArgs(
        `value` = `value` ?: throw PulumiNullFieldException("value"),
    )
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy