
com.pulumi.gcp.bigtable.kotlin.outputs.TableAutomatedBackupPolicy.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.gcp.bigtable.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
*
* @property frequency How frequently automated backups should occur.
* @property retentionPeriod How long the automated backups should be retained.
*/
public data class TableAutomatedBackupPolicy(
public val frequency: String? = null,
public val retentionPeriod: String? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.gcp.bigtable.outputs.TableAutomatedBackupPolicy): TableAutomatedBackupPolicy = TableAutomatedBackupPolicy(
frequency = javaType.frequency().map({ args0 -> args0 }).orElse(null),
retentionPeriod = javaType.retentionPeriod().map({ args0 -> args0 }).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy