com.pulumi.gcp.dataloss.kotlin.outputs.PreventionJobTriggerInspectJobInspectConfigRuleSetRuleHotwordRuleLikelihoodAdjustment.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.Int
import kotlin.String
import kotlin.Suppress
/**
*
* @property fixedLikelihood Set the likelihood of a finding to a fixed value. Either this or relative_likelihood can be set.
* Possible values are: `VERY_UNLIKELY`, `UNLIKELY`, `POSSIBLE`, `LIKELY`, `VERY_LIKELY`.
* @property relativeLikelihood Increase or decrease the likelihood by the specified number of levels. For example,
* if a finding would be POSSIBLE without the detection rule and relativeLikelihood is 1,
* then it is upgraded to LIKELY, while a value of -1 would downgrade it to UNLIKELY.
* Likelihood may never drop below VERY_UNLIKELY or exceed VERY_LIKELY, so applying an
* adjustment of 1 followed by an adjustment of -1 when base likelihood is VERY_LIKELY
* will result in a final likelihood of LIKELY. Either this or fixed_likelihood can be set.
*/
public data class
PreventionJobTriggerInspectJobInspectConfigRuleSetRuleHotwordRuleLikelihoodAdjustment(
public val fixedLikelihood: String? = null,
public val relativeLikelihood: Int? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.gcp.dataloss.outputs.PreventionJobTriggerInspectJobInspectConfigRuleSetRuleHotwordRuleLikelihoodAdjustment): PreventionJobTriggerInspectJobInspectConfigRuleSetRuleHotwordRuleLikelihoodAdjustment =
PreventionJobTriggerInspectJobInspectConfigRuleSetRuleHotwordRuleLikelihoodAdjustment(
fixedLikelihood = javaType.fixedLikelihood().map({ args0 -> args0 }).orElse(null),
relativeLikelihood = javaType.relativeLikelihood().map({ args0 -> args0 }).orElse(null),
)
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy