com.pulumi.gcp.edgecontainer.kotlin.inputs.ClusterMaintenancePolicyArgs.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.edgecontainer.kotlin.inputs
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.gcp.edgecontainer.inputs.ClusterMaintenancePolicyArgs.builder
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiNullFieldException
import com.pulumi.kotlin.PulumiTagMarker
import com.pulumi.kotlin.applySuspend
import kotlin.Suppress
import kotlin.Unit
import kotlin.jvm.JvmName
/**
*
* @property window Specifies the maintenance window in which maintenance may be performed.
* Structure is documented below.
*/
public data class ClusterMaintenancePolicyArgs(
public val window: Output,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.gcp.edgecontainer.inputs.ClusterMaintenancePolicyArgs =
com.pulumi.gcp.edgecontainer.inputs.ClusterMaintenancePolicyArgs.builder()
.window(window.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) })).build()
}
/**
* Builder for [ClusterMaintenancePolicyArgs].
*/
@PulumiTagMarker
public class ClusterMaintenancePolicyArgsBuilder internal constructor() {
private var window: Output? = null
/**
* @param value Specifies the maintenance window in which maintenance may be performed.
* Structure is documented below.
*/
@JvmName("oaiurxffqtnhgjyh")
public suspend fun window(`value`: Output) {
this.window = value
}
/**
* @param value Specifies the maintenance window in which maintenance may be performed.
* Structure is documented below.
*/
@JvmName("fwqjnosplbpcdkne")
public suspend fun window(`value`: ClusterMaintenancePolicyWindowArgs) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> of(args0) })
this.window = mapped
}
/**
* @param argument Specifies the maintenance window in which maintenance may be performed.
* Structure is documented below.
*/
@JvmName("hhwfyqrufglpoqsn")
public suspend fun window(argument: suspend ClusterMaintenancePolicyWindowArgsBuilder.() -> Unit) {
val toBeMapped = ClusterMaintenancePolicyWindowArgsBuilder().applySuspend { argument() }.build()
val mapped = of(toBeMapped)
this.window = mapped
}
internal fun build(): ClusterMaintenancePolicyArgs = ClusterMaintenancePolicyArgs(
window = window ?: throw PulumiNullFieldException("window"),
)
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy