![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azurenative.iotoperationsmq.kotlin.inputs.DeltaTableArgs.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-azure-native-kotlin Show documentation
Show all versions of pulumi-azure-native-kotlin Show documentation
Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azurenative.iotoperationsmq.kotlin.inputs
import com.pulumi.azurenative.iotoperationsmq.inputs.DeltaTableArgs.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 com.pulumi.kotlin.applySuspend
import kotlin.String
import kotlin.Suppress
import kotlin.Unit
import kotlin.collections.List
import kotlin.jvm.JvmName
/**
* Delta table properties
* @property schema Schema list supported.
* @property tableName Delta table name.
* @property tablePath Delta table path.
*/
public data class DeltaTableArgs(
public val schema: Output>,
public val tableName: Output,
public val tablePath: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azurenative.iotoperationsmq.inputs.DeltaTableArgs =
com.pulumi.azurenative.iotoperationsmq.inputs.DeltaTableArgs.builder()
.schema(schema.applyValue({ args0 -> args0.map({ args0 -> args0.let({ args0 -> args0.toJava() }) }) }))
.tableName(tableName.applyValue({ args0 -> args0 }))
.tablePath(tablePath?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [DeltaTableArgs].
*/
@PulumiTagMarker
public class DeltaTableArgsBuilder internal constructor() {
private var schema: Output>? = null
private var tableName: Output? = null
private var tablePath: Output? = null
/**
* @param value Schema list supported.
*/
@JvmName("qhjroigsxmtdsqod")
public suspend fun schema(`value`: Output>) {
this.schema = value
}
@JvmName("vbiqqsoofngrqvlo")
public suspend fun schema(vararg values: Output) {
this.schema = Output.all(values.asList())
}
/**
* @param values Schema list supported.
*/
@JvmName("hugwvuakolynkrhw")
public suspend fun schema(values: List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy