com.pulumi.gcp.dataloss.kotlin.inputs.PreventionDiscoveryConfigActionExportDataProfileTableArgs.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.dataloss.kotlin.inputs
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.gcp.dataloss.inputs.PreventionDiscoveryConfigActionExportDataProfileTableArgs.builder
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName
/**
*
* @property datasetId Dataset Id of the table
* @property projectId The Google Cloud Platform project ID of the project containing the table. If omitted, the project ID is inferred from the API call.
* @property tableId Name of the table
*/
public data class PreventionDiscoveryConfigActionExportDataProfileTableArgs(
public val datasetId: Output? = null,
public val projectId: Output? = null,
public val tableId: Output? = null,
) :
ConvertibleToJava {
override fun toJava(): com.pulumi.gcp.dataloss.inputs.PreventionDiscoveryConfigActionExportDataProfileTableArgs =
com.pulumi.gcp.dataloss.inputs.PreventionDiscoveryConfigActionExportDataProfileTableArgs.builder()
.datasetId(datasetId?.applyValue({ args0 -> args0 }))
.projectId(projectId?.applyValue({ args0 -> args0 }))
.tableId(tableId?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [PreventionDiscoveryConfigActionExportDataProfileTableArgs].
*/
@PulumiTagMarker
public class PreventionDiscoveryConfigActionExportDataProfileTableArgsBuilder internal constructor() {
private var datasetId: Output? = null
private var projectId: Output? = null
private var tableId: Output? = null
/**
* @param value Dataset Id of the table
*/
@JvmName("mmocxryhswqukwds")
public suspend fun datasetId(`value`: Output) {
this.datasetId = value
}
/**
* @param value The Google Cloud Platform project ID of the project containing the table. If omitted, the project ID is inferred from the API call.
*/
@JvmName("gmfhecrrmlalqywr")
public suspend fun projectId(`value`: Output) {
this.projectId = value
}
/**
* @param value Name of the table
*/
@JvmName("ciawkoojudvmxawm")
public suspend fun tableId(`value`: Output) {
this.tableId = value
}
/**
* @param value Dataset Id of the table
*/
@JvmName("rapkgwimnraqovqn")
public suspend fun datasetId(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.datasetId = mapped
}
/**
* @param value The Google Cloud Platform project ID of the project containing the table. If omitted, the project ID is inferred from the API call.
*/
@JvmName("fhxbppupouorimmk")
public suspend fun projectId(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.projectId = mapped
}
/**
* @param value Name of the table
*/
@JvmName("mxdqmdbktxloyxtx")
public suspend fun tableId(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.tableId = mapped
}
internal fun build(): PreventionDiscoveryConfigActionExportDataProfileTableArgs =
PreventionDiscoveryConfigActionExportDataProfileTableArgs(
datasetId = datasetId,
projectId = projectId,
tableId = tableId,
)
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy