com.pulumi.gcp.dataloss.kotlin.outputs.PreventionJobTriggerInspectJobInspectConfigRuleSetRuleExclusionRuleRegex.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
import kotlin.collections.List
/**
*
* @property groupIndexes The index of the submatch to extract as findings. When not specified, the entire match is returned. No more than 3 may be included.
* @property pattern Pattern defining the regular expression.
* Its syntax (https://github.com/google/re2/wiki/Syntax) can be found under the google/re2 repository on GitHub.
*/
public data class PreventionJobTriggerInspectJobInspectConfigRuleSetRuleExclusionRuleRegex(
public val groupIndexes: List? = null,
public val pattern: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.gcp.dataloss.outputs.PreventionJobTriggerInspectJobInspectConfigRuleSetRuleExclusionRuleRegex): PreventionJobTriggerInspectJobInspectConfigRuleSetRuleExclusionRuleRegex =
PreventionJobTriggerInspectJobInspectConfigRuleSetRuleExclusionRuleRegex(
groupIndexes = javaType.groupIndexes().map({ args0 -> args0 }),
pattern = javaType.pattern(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy