All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.gcp.dataloss.kotlin.outputs.PreventionJobTriggerInspectJobInspectConfigRuleSetRuleExclusionRuleRegex.kt Maven / Gradle / Ivy

Go to download

Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.

There is a newer version: 8.12.0.0
Show newest version
@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