com.pulumi.gcp.dataloss.kotlin.outputs.PreventionDiscoveryConfigTargetBigQueryTargetCadence.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.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