com.pulumi.gcp.composer.kotlin.inputs.EnvironmentConfigRecoveryConfigArgs.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.inputs
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.gcp.composer.inputs.EnvironmentConfigRecoveryConfigArgs.builder
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import com.pulumi.kotlin.applySuspend
import kotlin.Suppress
import kotlin.Unit
import kotlin.jvm.JvmName
/**
*
* @property scheduledSnapshotsConfig The configuration settings for scheduled snapshots.
*/
public data class EnvironmentConfigRecoveryConfigArgs(
public val scheduledSnapshotsConfig: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.gcp.composer.inputs.EnvironmentConfigRecoveryConfigArgs =
com.pulumi.gcp.composer.inputs.EnvironmentConfigRecoveryConfigArgs.builder()
.scheduledSnapshotsConfig(
scheduledSnapshotsConfig?.applyValue({ args0 ->
args0.let({ args0 ->
args0.toJava()
})
}),
).build()
}
/**
* Builder for [EnvironmentConfigRecoveryConfigArgs].
*/
@PulumiTagMarker
public class EnvironmentConfigRecoveryConfigArgsBuilder internal constructor() {
private var scheduledSnapshotsConfig:
Output? = null
/**
* @param value The configuration settings for scheduled snapshots.
*/
@JvmName("yijhemwxltftqoat")
public suspend fun scheduledSnapshotsConfig(`value`: Output) {
this.scheduledSnapshotsConfig = value
}
/**
* @param value The configuration settings for scheduled snapshots.
*/
@JvmName("htbduvlordfpsdto")
public suspend fun scheduledSnapshotsConfig(`value`: EnvironmentConfigRecoveryConfigScheduledSnapshotsConfigArgs?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.scheduledSnapshotsConfig = mapped
}
/**
* @param argument The configuration settings for scheduled snapshots.
*/
@JvmName("jpncxupnkjuthnty")
public suspend fun scheduledSnapshotsConfig(argument: suspend EnvironmentConfigRecoveryConfigScheduledSnapshotsConfigArgsBuilder.() -> Unit) {
val toBeMapped =
EnvironmentConfigRecoveryConfigScheduledSnapshotsConfigArgsBuilder().applySuspend {
argument()
}.build()
val mapped = of(toBeMapped)
this.scheduledSnapshotsConfig = mapped
}
internal fun build(): EnvironmentConfigRecoveryConfigArgs = EnvironmentConfigRecoveryConfigArgs(
scheduledSnapshotsConfig = scheduledSnapshotsConfig,
)
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy