All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.gcp.dataloss.kotlin.inputs.PreventionJobTriggerInspectJobStorageConfigHybridOptionsTableOptionsArgs.kt Maven / Gradle / Ivy

Go to download

Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.

There is a newer version: 8.10.0.0
Show newest version
@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>) {
        this.identifyingFields = Output.all(values)
    }

    /**
     * @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("etosstlypcbuvewu")
    public suspend fun identifyingFields(`value`: List?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.identifyingFields = mapped
    }

    /**
     * @param argument 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("bkehiuxjhxsdgxnn")
    public suspend fun identifyingFields(argument: List Unit>) {
        val toBeMapped = argument.toList().map {
            PreventionJobTriggerInspectJobStorageConfigHybridOptionsTableOptionsIdentifyingFieldArgsBuilder().applySuspend {
                it()
            }.build()
        }
        val mapped = of(toBeMapped)
        this.identifyingFields = mapped
    }

    /**
     * @param argument 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("gbxyyhetkotvnnli")
    public suspend fun identifyingFields(vararg argument: suspend PreventionJobTriggerInspectJobStorageConfigHybridOptionsTableOptionsIdentifyingFieldArgsBuilder.() -> Unit) {
        val toBeMapped = argument.toList().map {
            PreventionJobTriggerInspectJobStorageConfigHybridOptionsTableOptionsIdentifyingFieldArgsBuilder().applySuspend {
                it()
            }.build()
        }
        val mapped = of(toBeMapped)
        this.identifyingFields = mapped
    }

    /**
     * @param argument 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("ehtnnjcfiemebkrl")
    public suspend fun identifyingFields(argument: suspend PreventionJobTriggerInspectJobStorageConfigHybridOptionsTableOptionsIdentifyingFieldArgsBuilder.() -> Unit) {
        val toBeMapped =
            listOf(
                PreventionJobTriggerInspectJobStorageConfigHybridOptionsTableOptionsIdentifyingFieldArgsBuilder().applySuspend
                    { argument() }.build(),
            )
        val mapped = of(toBeMapped)
        this.identifyingFields = mapped
    }

    /**
     * @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("yiwwvkoekrinadfe")
    public suspend fun identifyingFields(vararg values: PreventionJobTriggerInspectJobStorageConfigHybridOptionsTableOptionsIdentifyingFieldArgs) {
        val toBeMapped = values.toList()
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.identifyingFields = mapped
    }

    internal fun build(): PreventionJobTriggerInspectJobStorageConfigHybridOptionsTableOptionsArgs =
        PreventionJobTriggerInspectJobStorageConfigHybridOptionsTableOptionsArgs(
            identifyingFields = identifyingFields,
        )
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy