![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azurenative.batch.kotlin.inputs.WindowsConfigurationArgs.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-azure-native-kotlin Show documentation
Show all versions of pulumi-azure-native-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.azurenative.batch.kotlin.inputs
import com.pulumi.azurenative.batch.inputs.WindowsConfigurationArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.Boolean
import kotlin.Suppress
import kotlin.jvm.JvmName
/**
*
* @property enableAutomaticUpdates If omitted, the default value is true.
*/
public data class WindowsConfigurationArgs(
public val enableAutomaticUpdates: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azurenative.batch.inputs.WindowsConfigurationArgs =
com.pulumi.azurenative.batch.inputs.WindowsConfigurationArgs.builder()
.enableAutomaticUpdates(enableAutomaticUpdates?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [WindowsConfigurationArgs].
*/
@PulumiTagMarker
public class WindowsConfigurationArgsBuilder internal constructor() {
private var enableAutomaticUpdates: Output? = null
/**
* @param value If omitted, the default value is true.
*/
@JvmName("emsktuyilqkhutct")
public suspend fun enableAutomaticUpdates(`value`: Output) {
this.enableAutomaticUpdates = value
}
/**
* @param value If omitted, the default value is true.
*/
@JvmName("gdvbqmkydrqjqvqw")
public suspend fun enableAutomaticUpdates(`value`: Boolean?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.enableAutomaticUpdates = mapped
}
internal fun build(): WindowsConfigurationArgs = WindowsConfigurationArgs(
enableAutomaticUpdates = enableAutomaticUpdates,
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy