![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azurenative.operationalinsights.kotlin.inputs.SchemaArgs.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.operationalinsights.kotlin.inputs
import com.pulumi.azurenative.operationalinsights.inputs.SchemaArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
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
/**
* Table's schema.
* @property columns A list of table custom columns.
* @property description Table description.
* @property displayName Table display name.
* @property name Table name.
*/
public data class SchemaArgs(
public val columns: Output>? = null,
public val description: Output? = null,
public val displayName: Output? = null,
public val name: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azurenative.operationalinsights.inputs.SchemaArgs =
com.pulumi.azurenative.operationalinsights.inputs.SchemaArgs.builder()
.columns(
columns?.applyValue({ args0 ->
args0.map({ args0 ->
args0.let({ args0 ->
args0.toJava()
})
})
}),
)
.description(description?.applyValue({ args0 -> args0 }))
.displayName(displayName?.applyValue({ args0 -> args0 }))
.name(name?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [SchemaArgs].
*/
@PulumiTagMarker
public class SchemaArgsBuilder internal constructor() {
private var columns: Output>? = null
private var description: Output? = null
private var displayName: Output? = null
private var name: Output? = null
/**
* @param value A list of table custom columns.
*/
@JvmName("dcdkihjjtldssshi")
public suspend fun columns(`value`: Output>) {
this.columns = value
}
@JvmName("smdaomqdfkyfljbx")
public suspend fun columns(vararg values: Output) {
this.columns = Output.all(values.asList())
}
/**
* @param values A list of table custom columns.
*/
@JvmName("amounxaxqoxbeeem")
public suspend fun columns(values: List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy