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

com.pulumi.gcp.dataloss.kotlin.outputs.PreventionDiscoveryConfigTargetBigQueryTargetCadence.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.13.1.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.gcp.dataloss.kotlin.outputs

import kotlin.Suppress

/**
 *
 * @property inspectTemplateModifiedCadence Governs when to update data profiles when the inspection rules defined by the `InspectTemplate` change. If not set, changing the template will not cause a data profile to update.
 * Structure is documented below.
 * @property schemaModifiedCadence Governs when to update data profiles when a schema is modified
 * Structure is documented below.
 * @property tableModifiedCadence Governs when to update profile when a table is modified.
 * Structure is documented below.
 */
public data class PreventionDiscoveryConfigTargetBigQueryTargetCadence(
    public val inspectTemplateModifiedCadence: PreventionDiscoveryConfigTargetBigQueryTargetCadenceInspectTemplateModifiedCadence? = null,
    public val schemaModifiedCadence: PreventionDiscoveryConfigTargetBigQueryTargetCadenceSchemaModifiedCadence? = null,
    public val tableModifiedCadence: PreventionDiscoveryConfigTargetBigQueryTargetCadenceTableModifiedCadence? = null,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.gcp.dataloss.outputs.PreventionDiscoveryConfigTargetBigQueryTargetCadence): PreventionDiscoveryConfigTargetBigQueryTargetCadence =
            PreventionDiscoveryConfigTargetBigQueryTargetCadence(
                inspectTemplateModifiedCadence = javaType.inspectTemplateModifiedCadence().map({ args0 ->
                    args0.let({ args0 ->
                        com.pulumi.gcp.dataloss.kotlin.outputs.PreventionDiscoveryConfigTargetBigQueryTargetCadenceInspectTemplateModifiedCadence.Companion.toKotlin(args0)
                    })
                }).orElse(null),
                schemaModifiedCadence = javaType.schemaModifiedCadence().map({ args0 ->
                    args0.let({ args0 ->
                        com.pulumi.gcp.dataloss.kotlin.outputs.PreventionDiscoveryConfigTargetBigQueryTargetCadenceSchemaModifiedCadence.Companion.toKotlin(args0)
                    })
                }).orElse(null),
                tableModifiedCadence = javaType.tableModifiedCadence().map({ args0 ->
                    args0.let({ args0 ->
                        com.pulumi.gcp.dataloss.kotlin.outputs.PreventionDiscoveryConfigTargetBigQueryTargetCadenceTableModifiedCadence.Companion.toKotlin(args0)
                    })
                }).orElse(null),
            )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy