com.pulumi.gcp.bigquery.kotlin.inputs.BiReservationPreferredTableArgs.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-gcp-kotlin Show documentation
Show all versions of pulumi-gcp-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.gcp.bigquery.kotlin.inputs
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.gcp.bigquery.inputs.BiReservationPreferredTableArgs.builder
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName
/**
*
* @property datasetId The ID of the dataset in the above project.
* @property projectId The assigned project ID of the project.
* @property tableId The ID of the table in the above dataset.
*/
public data class BiReservationPreferredTableArgs(
public val datasetId: Output? = null,
public val projectId: Output? = null,
public val tableId: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.gcp.bigquery.inputs.BiReservationPreferredTableArgs =
com.pulumi.gcp.bigquery.inputs.BiReservationPreferredTableArgs.builder()
.datasetId(datasetId?.applyValue({ args0 -> args0 }))
.projectId(projectId?.applyValue({ args0 -> args0 }))
.tableId(tableId?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [BiReservationPreferredTableArgs].
*/
@PulumiTagMarker
public class BiReservationPreferredTableArgsBuilder internal constructor() {
private var datasetId: Output? = null
private var projectId: Output? = null
private var tableId: Output? = null
/**
* @param value The ID of the dataset in the above project.
*/
@JvmName("xkxnjmpdirelnerl")
public suspend fun datasetId(`value`: Output) {
this.datasetId = value
}
/**
* @param value The assigned project ID of the project.
*/
@JvmName("qbfhowsuuecomnql")
public suspend fun projectId(`value`: Output) {
this.projectId = value
}
/**
* @param value The ID of the table in the above dataset.
*/
@JvmName("sjhhpwgcjxrtuamb")
public suspend fun tableId(`value`: Output) {
this.tableId = value
}
/**
* @param value The ID of the dataset in the above project.
*/
@JvmName("nftlxolmerhojilb")
public suspend fun datasetId(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.datasetId = mapped
}
/**
* @param value The assigned project ID of the project.
*/
@JvmName("iiqbwkucwsuxyafi")
public suspend fun projectId(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.projectId = mapped
}
/**
* @param value The ID of the table in the above dataset.
*/
@JvmName("ndiibhyxmvteqyma")
public suspend fun tableId(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.tableId = mapped
}
internal fun build(): BiReservationPreferredTableArgs = BiReservationPreferredTableArgs(
datasetId = datasetId,
projectId = projectId,
tableId = tableId,
)
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy