com.pulumi.gcp.dataloss.kotlin.outputs.PreventionDiscoveryConfigActionPubSubNotificationPubsubConditionExpressionsCondition.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.String
import kotlin.Suppress
/**
*
* @property minimumRiskScore The minimum data risk score that triggers the condition.
* Possible values are: `HIGH`, `MEDIUM_OR_HIGH`.
* @property minimumSensitivityScore The minimum sensitivity level that triggers the condition.
* Possible values are: `HIGH`, `MEDIUM_OR_HIGH`.
*/
public data class
PreventionDiscoveryConfigActionPubSubNotificationPubsubConditionExpressionsCondition(
public val minimumRiskScore: String? = null,
public val minimumSensitivityScore: String? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.gcp.dataloss.outputs.PreventionDiscoveryConfigActionPubSubNotificationPubsubConditionExpressionsCondition): PreventionDiscoveryConfigActionPubSubNotificationPubsubConditionExpressionsCondition =
PreventionDiscoveryConfigActionPubSubNotificationPubsubConditionExpressionsCondition(
minimumRiskScore = javaType.minimumRiskScore().map({ args0 -> args0 }).orElse(null),
minimumSensitivityScore = javaType.minimumSensitivityScore().map({ args0 -> args0 }).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy