![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azurenative.maintenance.kotlin.inputs.InputWindowsParametersArgs.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.maintenance.kotlin.inputs
import com.pulumi.azurenative.maintenance.inputs.InputWindowsParametersArgs.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.String
import kotlin.Suppress
import kotlin.collections.List
import kotlin.jvm.JvmName
/**
* Input properties for patching a Windows machine.
* @property classificationsToInclude Classification category of patches to be patched
* @property excludeKbsRequiringReboot Exclude patches which need reboot
* @property kbNumbersToExclude Windows KBID to be excluded for patching.
* @property kbNumbersToInclude Windows KBID to be included for patching.
*/
public data class InputWindowsParametersArgs(
public val classificationsToInclude: Output>? = null,
public val excludeKbsRequiringReboot: Output? = null,
public val kbNumbersToExclude: Output>? = null,
public val kbNumbersToInclude: Output>? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azurenative.maintenance.inputs.InputWindowsParametersArgs =
com.pulumi.azurenative.maintenance.inputs.InputWindowsParametersArgs.builder()
.classificationsToInclude(
classificationsToInclude?.applyValue({ args0 ->
args0.map({ args0 ->
args0
})
}),
)
.excludeKbsRequiringReboot(excludeKbsRequiringReboot?.applyValue({ args0 -> args0 }))
.kbNumbersToExclude(kbNumbersToExclude?.applyValue({ args0 -> args0.map({ args0 -> args0 }) }))
.kbNumbersToInclude(
kbNumbersToInclude?.applyValue({ args0 ->
args0.map({ args0 ->
args0
})
}),
).build()
}
/**
* Builder for [InputWindowsParametersArgs].
*/
@PulumiTagMarker
public class InputWindowsParametersArgsBuilder internal constructor() {
private var classificationsToInclude: Output>? = null
private var excludeKbsRequiringReboot: Output? = null
private var kbNumbersToExclude: Output>? = null
private var kbNumbersToInclude: Output>? = null
/**
* @param value Classification category of patches to be patched
*/
@JvmName("jihmhgfdstdtoqwv")
public suspend fun classificationsToInclude(`value`: Output>) {
this.classificationsToInclude = value
}
@JvmName("alfuusamppapctkr")
public suspend fun classificationsToInclude(vararg values: Output) {
this.classificationsToInclude = Output.all(values.asList())
}
/**
* @param values Classification category of patches to be patched
*/
@JvmName("grxkvquhrlnftvhx")
public suspend fun classificationsToInclude(values: List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy