![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azurenative.automation.kotlin.inputs.WindowsPropertiesArgs.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.automation.kotlin.inputs
import com.pulumi.azurenative.automation.inputs.WindowsPropertiesArgs.builder
import com.pulumi.azurenative.automation.kotlin.enums.WindowsUpdateClasses
import com.pulumi.core.Either
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
import kotlin.jvm.JvmName
/**
* Windows specific update configuration.
* @property excludedKbNumbers KB numbers excluded from the software update configuration.
* @property includedKbNumbers KB numbers included from the software update configuration.
* @property includedUpdateClassifications Update classification included in the software update configuration. A comma separated string with required values
* @property rebootSetting Reboot setting for the software update configuration.
*/
public data class WindowsPropertiesArgs(
public val excludedKbNumbers: Output>? = null,
public val includedKbNumbers: Output>? = null,
public val includedUpdateClassifications: Output>? = null,
public val rebootSetting: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azurenative.automation.inputs.WindowsPropertiesArgs =
com.pulumi.azurenative.automation.inputs.WindowsPropertiesArgs.builder()
.excludedKbNumbers(excludedKbNumbers?.applyValue({ args0 -> args0.map({ args0 -> args0 }) }))
.includedKbNumbers(includedKbNumbers?.applyValue({ args0 -> args0.map({ args0 -> args0 }) }))
.includedUpdateClassifications(
includedUpdateClassifications?.applyValue({ args0 ->
args0.transform({ args0 -> args0 }, { args0 -> args0.let({ args0 -> args0.toJava() }) })
}),
)
.rebootSetting(rebootSetting?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [WindowsPropertiesArgs].
*/
@PulumiTagMarker
public class WindowsPropertiesArgsBuilder internal constructor() {
private var excludedKbNumbers: Output>? = null
private var includedKbNumbers: Output>? = null
private var includedUpdateClassifications: Output>? = null
private var rebootSetting: Output? = null
/**
* @param value KB numbers excluded from the software update configuration.
*/
@JvmName("ovcevqcufaulvvhr")
public suspend fun excludedKbNumbers(`value`: Output>) {
this.excludedKbNumbers = value
}
@JvmName("rlkmjkxwkfglpqmd")
public suspend fun excludedKbNumbers(vararg values: Output) {
this.excludedKbNumbers = Output.all(values.asList())
}
/**
* @param values KB numbers excluded from the software update configuration.
*/
@JvmName("btjmkuwskiogdnvr")
public suspend fun excludedKbNumbers(values: List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy