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

com.pulumi.cloudflare.kotlin.inputs.DlpProfileContextAwarenessSkipArgs.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: 5.40.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.cloudflare.kotlin.inputs

import com.pulumi.cloudflare.inputs.DlpProfileContextAwarenessSkipArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiNullFieldException
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.Boolean
import kotlin.Suppress
import kotlin.jvm.JvmName

/**
 *
 * @property files Return all matches, regardless of context analysis result, if the data is a file.
 */
public data class DlpProfileContextAwarenessSkipArgs(
    public val files: Output,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.cloudflare.inputs.DlpProfileContextAwarenessSkipArgs =
        com.pulumi.cloudflare.inputs.DlpProfileContextAwarenessSkipArgs.builder()
            .files(files.applyValue({ args0 -> args0 })).build()
}

/**
 * Builder for [DlpProfileContextAwarenessSkipArgs].
 */
@PulumiTagMarker
public class DlpProfileContextAwarenessSkipArgsBuilder internal constructor() {
    private var files: Output? = null

    /**
     * @param value Return all matches, regardless of context analysis result, if the data is a file.
     */
    @JvmName("bslqyjqcqfskpsvn")
    public suspend fun files(`value`: Output) {
        this.files = value
    }

    /**
     * @param value Return all matches, regardless of context analysis result, if the data is a file.
     */
    @JvmName("hfknaqdydudtyuqm")
    public suspend fun files(`value`: Boolean) {
        val toBeMapped = value
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.files = mapped
    }

    internal fun build(): DlpProfileContextAwarenessSkipArgs = DlpProfileContextAwarenessSkipArgs(
        files = files ?: throw PulumiNullFieldException("files"),
    )
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy