com.pulumi.gcp.dataloss.kotlin.outputs.PreventionInspectTemplateInspectConfigLimits.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.Suppress
import kotlin.collections.List
/**
*
* @property maxFindingsPerInfoTypes Configuration of findings limit given for specified infoTypes.
* Structure is documented below.
* @property maxFindingsPerItem Max number of findings that will be returned for each item scanned. The maximum returned is 2000.
* @property maxFindingsPerRequest Max number of findings that will be returned per request/job. The maximum returned is 2000.
*/
public data class PreventionInspectTemplateInspectConfigLimits(
public val maxFindingsPerInfoTypes: List? = null,
public val maxFindingsPerItem: Int,
public val maxFindingsPerRequest: Int,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.gcp.dataloss.outputs.PreventionInspectTemplateInspectConfigLimits): PreventionInspectTemplateInspectConfigLimits = PreventionInspectTemplateInspectConfigLimits(
maxFindingsPerInfoTypes = javaType.maxFindingsPerInfoTypes().map({ args0 ->
args0.let({ args0 ->
com.pulumi.gcp.dataloss.kotlin.outputs.PreventionInspectTemplateInspectConfigLimitsMaxFindingsPerInfoType.Companion.toKotlin(args0)
})
}),
maxFindingsPerItem = javaType.maxFindingsPerItem(),
maxFindingsPerRequest = javaType.maxFindingsPerRequest(),
)
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy