
com.pulumi.googlenative.bigquery.v2.kotlin.inputs.TableSchemaArgs.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-google-native-kotlin Show documentation
Show all versions of pulumi-google-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.
The newest version!
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.googlenative.bigquery.v2.kotlin.inputs
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.googlenative.bigquery.v2.inputs.TableSchemaArgs.builder
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import com.pulumi.kotlin.applySuspend
import kotlin.Suppress
import kotlin.Unit
import kotlin.collections.List
import kotlin.jvm.JvmName
/**
*
* @property fields Describes the fields in a table.
*/
public data class TableSchemaArgs(
public val fields: Output>? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.googlenative.bigquery.v2.inputs.TableSchemaArgs =
com.pulumi.googlenative.bigquery.v2.inputs.TableSchemaArgs.builder()
.fields(
fields?.applyValue({ args0 ->
args0.map({ args0 ->
args0.let({ args0 ->
args0.toJava()
})
})
}),
).build()
}
/**
* Builder for [TableSchemaArgs].
*/
@PulumiTagMarker
public class TableSchemaArgsBuilder internal constructor() {
private var fields: Output>? = null
/**
* @param value Describes the fields in a table.
*/
@JvmName("gcoccosfnsghfgwl")
public suspend fun fields(`value`: Output>) {
this.fields = value
}
@JvmName("uxxedkrbmkskqirw")
public suspend fun fields(vararg values: Output) {
this.fields = Output.all(values.asList())
}
/**
* @param values Describes the fields in a table.
*/
@JvmName("neqlusbkerxmkxhn")
public suspend fun fields(values: List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy