com.pulumi.gcp.dataloss.kotlin.inputs.PreventionJobTriggerInspectJobStorageConfigHybridOptionsTableOptionsArgs.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.PreventionJobTriggerInspectJobStorageConfigHybridOptionsTableOptionsArgs.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 identifyingFields The columns that are the primary keys for table objects included in ContentItem. A copy of this
* cell's value will stored alongside alongside each finding so that the finding can be traced to
* the specific row it came from. No more than 3 may be provided.
* Structure is documented below.
*/
public data class PreventionJobTriggerInspectJobStorageConfigHybridOptionsTableOptionsArgs(
public val identifyingFields: Output>? =
null,
) :
ConvertibleToJava {
override fun toJava(): com.pulumi.gcp.dataloss.inputs.PreventionJobTriggerInspectJobStorageConfigHybridOptionsTableOptionsArgs =
com.pulumi.gcp.dataloss.inputs.PreventionJobTriggerInspectJobStorageConfigHybridOptionsTableOptionsArgs.builder()
.identifyingFields(
identifyingFields?.applyValue({ args0 ->
args0.map({ args0 ->
args0.let({ args0 ->
args0.toJava()
})
})
}),
).build()
}
/**
* Builder for [PreventionJobTriggerInspectJobStorageConfigHybridOptionsTableOptionsArgs].
*/
@PulumiTagMarker
public class PreventionJobTriggerInspectJobStorageConfigHybridOptionsTableOptionsArgsBuilder
internal constructor() {
private var identifyingFields:
Output>? =
null
/**
* @param value The columns that are the primary keys for table objects included in ContentItem. A copy of this
* cell's value will stored alongside alongside each finding so that the finding can be traced to
* the specific row it came from. No more than 3 may be provided.
* Structure is documented below.
*/
@JvmName("helotbdokuxhtnsa")
public suspend fun identifyingFields(`value`: Output>) {
this.identifyingFields = value
}
@JvmName("nhamirrnptwxpgai")
public suspend fun identifyingFields(vararg values: Output) {
this.identifyingFields = Output.all(values.asList())
}
/**
* @param values The columns that are the primary keys for table objects included in ContentItem. A copy of this
* cell's value will stored alongside alongside each finding so that the finding can be traced to
* the specific row it came from. No more than 3 may be provided.
* Structure is documented below.
*/
@JvmName("ludtcjltirwehsii")
public suspend fun identifyingFields(values: List
© 2015 - 2024 Weber Informatics LLC | Privacy Policy