![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.gcp.composer.kotlin.outputs.GetEnvironmentConfigRecoveryConfigScheduledSnapshotsConfig.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.composer.kotlin.outputs
import kotlin.Boolean
import kotlin.String
import kotlin.Suppress
/**
*
* @property enabled When enabled, Cloud Composer periodically saves snapshots of your environment to a Cloud Storage bucket.
* @property snapshotCreationSchedule Snapshot schedule, in the unix-cron format.
* @property snapshotLocation the URI of a bucket folder where to save the snapshot.
* @property timeZone A time zone for the schedule. This value is a time offset and does not take into account daylight saving time changes. Valid values are from UTC-12 to UTC+12. Examples: UTC, UTC-01, UTC+03.
*/
public data class GetEnvironmentConfigRecoveryConfigScheduledSnapshotsConfig(
public val enabled: Boolean,
public val snapshotCreationSchedule: String,
public val snapshotLocation: String,
public val timeZone: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.gcp.composer.outputs.GetEnvironmentConfigRecoveryConfigScheduledSnapshotsConfig): GetEnvironmentConfigRecoveryConfigScheduledSnapshotsConfig =
GetEnvironmentConfigRecoveryConfigScheduledSnapshotsConfig(
enabled = javaType.enabled(),
snapshotCreationSchedule = javaType.snapshotCreationSchedule(),
snapshotLocation = javaType.snapshotLocation(),
timeZone = javaType.timeZone(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy