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

com.pulumi.gcp.composer.kotlin.outputs.GetEnvironmentConfigRecoveryConfigScheduledSnapshotsConfig.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.12.0.0
Show newest version
@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