com.pulumi.gcp.dataloss.kotlin.inputs.PreventionInspectTemplateInspectConfigRuleSetRuleExclusionRuleExcludeByHotwordProximityArgs.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.PreventionInspectTemplateInspectConfigRuleSetRuleExclusionRuleExcludeByHotwordProximityArgs.builder
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.Int
import kotlin.Suppress
import kotlin.jvm.JvmName
/**
*
* @property windowAfter Number of characters after the finding to consider.
* @property windowBefore Number of characters before the finding to consider.
*/
public data class
PreventionInspectTemplateInspectConfigRuleSetRuleExclusionRuleExcludeByHotwordProximityArgs(
public val windowAfter: Output? = null,
public val windowBefore: Output? = null,
) :
ConvertibleToJava {
override fun toJava(): com.pulumi.gcp.dataloss.inputs.PreventionInspectTemplateInspectConfigRuleSetRuleExclusionRuleExcludeByHotwordProximityArgs =
com.pulumi.gcp.dataloss.inputs.PreventionInspectTemplateInspectConfigRuleSetRuleExclusionRuleExcludeByHotwordProximityArgs.builder()
.windowAfter(windowAfter?.applyValue({ args0 -> args0 }))
.windowBefore(windowBefore?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [PreventionInspectTemplateInspectConfigRuleSetRuleExclusionRuleExcludeByHotwordProximityArgs].
*/
@PulumiTagMarker
public class
PreventionInspectTemplateInspectConfigRuleSetRuleExclusionRuleExcludeByHotwordProximityArgsBuilder
internal constructor() {
private var windowAfter: Output? = null
private var windowBefore: Output? = null
/**
* @param value Number of characters after the finding to consider.
*/
@JvmName("tvrqaqglmpylefvq")
public suspend fun windowAfter(`value`: Output) {
this.windowAfter = value
}
/**
* @param value Number of characters before the finding to consider.
*/
@JvmName("vrrtbbbjnnlejfli")
public suspend fun windowBefore(`value`: Output) {
this.windowBefore = value
}
/**
* @param value Number of characters after the finding to consider.
*/
@JvmName("qutckyemgtknvtkm")
public suspend fun windowAfter(`value`: Int?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.windowAfter = mapped
}
/**
* @param value Number of characters before the finding to consider.
*/
@JvmName("llxbskwosapftugl")
public suspend fun windowBefore(`value`: Int?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.windowBefore = mapped
}
internal fun build(): PreventionInspectTemplateInspectConfigRuleSetRuleExclusionRuleExcludeByHotwordProximityArgs =
PreventionInspectTemplateInspectConfigRuleSetRuleExclusionRuleExcludeByHotwordProximityArgs(
windowAfter = windowAfter,
windowBefore = windowBefore,
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy