com.pulumi.gcp.dataloss.kotlin.outputs.PreventionJobTriggerInspectJobInspectConfigRuleSetRuleHotwordRule.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.outputs
import kotlin.Suppress
/**
*
* @property hotwordRegex Regular expression pattern defining what qualifies as a hotword.
* Structure is documented below.
* @property likelihoodAdjustment Likelihood adjustment to apply to all matching findings.
* Structure is documented below.
* @property proximity Proximity of the finding within which the entire hotword must reside. The total length of the window cannot
* exceed 1000 characters. Note that the finding itself will be included in the window, so that hotwords may be
* used to match substrings of the finding itself. For example, the certainty of a phone number regex
* `(\d{3}) \d{3}-\d{4}` could be adjusted upwards if the area code is known to be the local area code of a company
* office using the hotword regex `(xxx)`, where `xxx` is the area code in question.
* Structure is documented below.
*/
public data class PreventionJobTriggerInspectJobInspectConfigRuleSetRuleHotwordRule(
public val hotwordRegex: PreventionJobTriggerInspectJobInspectConfigRuleSetRuleHotwordRuleHotwordRegex? = null,
public val likelihoodAdjustment: PreventionJobTriggerInspectJobInspectConfigRuleSetRuleHotwordRuleLikelihoodAdjustment? = null,
public val proximity: PreventionJobTriggerInspectJobInspectConfigRuleSetRuleHotwordRuleProximity? =
null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.gcp.dataloss.outputs.PreventionJobTriggerInspectJobInspectConfigRuleSetRuleHotwordRule): PreventionJobTriggerInspectJobInspectConfigRuleSetRuleHotwordRule =
PreventionJobTriggerInspectJobInspectConfigRuleSetRuleHotwordRule(
hotwordRegex = javaType.hotwordRegex().map({ args0 ->
args0.let({ args0 ->
com.pulumi.gcp.dataloss.kotlin.outputs.PreventionJobTriggerInspectJobInspectConfigRuleSetRuleHotwordRuleHotwordRegex.Companion.toKotlin(args0)
})
}).orElse(null),
likelihoodAdjustment = javaType.likelihoodAdjustment().map({ args0 ->
args0.let({ args0 ->
com.pulumi.gcp.dataloss.kotlin.outputs.PreventionJobTriggerInspectJobInspectConfigRuleSetRuleHotwordRuleLikelihoodAdjustment.Companion.toKotlin(args0)
})
}).orElse(null),
proximity = javaType.proximity().map({ args0 ->
args0.let({ args0 ->
com.pulumi.gcp.dataloss.kotlin.outputs.PreventionJobTriggerInspectJobInspectConfigRuleSetRuleHotwordRuleProximity.Companion.toKotlin(args0)
})
}).orElse(null),
)
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy