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.10.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

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

import kotlin.Suppress

/**
 *
 * @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 schemaModifiedCadence: PreventionDiscoveryConfigTargetBigQueryTargetCadenceSchemaModifiedCadence? = null,
    public val tableModifiedCadence: PreventionDiscoveryConfigTargetBigQueryTargetCadenceTableModifiedCadence? = null,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.gcp.dataloss.outputs.PreventionDiscoveryConfigTargetBigQueryTargetCadence): PreventionDiscoveryConfigTargetBigQueryTargetCadence =
            PreventionDiscoveryConfigTargetBigQueryTargetCadence(
                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 - 2024 Weber Informatics LLC | Privacy Policy