![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azure.maintenance.kotlin.inputs.ConfigurationInstallPatchesWindowArgs.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-azure-kotlin Show documentation
Show all versions of pulumi-azure-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.azure.maintenance.kotlin.inputs
import com.pulumi.azure.maintenance.inputs.ConfigurationInstallPatchesWindowArgs.builder
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
/**
*
* @property classificationsToIncludes List of Classification category of patches to be patched. Possible values are `Critical`, `Security`, `UpdateRollup`, `FeaturePack`, `ServicePack`, `Definition`, `Tools` and `Updates`.
* @property kbNumbersToExcludes List of KB numbers to be excluded from patching.
* @property kbNumbersToIncludes List of KB numbers to be included for patching.
*/
public data class ConfigurationInstallPatchesWindowArgs(
public val classificationsToIncludes: Output>? = null,
public val kbNumbersToExcludes: Output>? = null,
public val kbNumbersToIncludes: Output>? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azure.maintenance.inputs.ConfigurationInstallPatchesWindowArgs =
com.pulumi.azure.maintenance.inputs.ConfigurationInstallPatchesWindowArgs.builder()
.classificationsToIncludes(
classificationsToIncludes?.applyValue({ args0 ->
args0.map({ args0 ->
args0
})
}),
)
.kbNumbersToExcludes(kbNumbersToExcludes?.applyValue({ args0 -> args0.map({ args0 -> args0 }) }))
.kbNumbersToIncludes(
kbNumbersToIncludes?.applyValue({ args0 ->
args0.map({ args0 ->
args0
})
}),
).build()
}
/**
* Builder for [ConfigurationInstallPatchesWindowArgs].
*/
@PulumiTagMarker
public class ConfigurationInstallPatchesWindowArgsBuilder internal constructor() {
private var classificationsToIncludes: Output>? = null
private var kbNumbersToExcludes: Output>? = null
private var kbNumbersToIncludes: Output>? = null
/**
* @param value List of Classification category of patches to be patched. Possible values are `Critical`, `Security`, `UpdateRollup`, `FeaturePack`, `ServicePack`, `Definition`, `Tools` and `Updates`.
*/
@JvmName("uvafgcevbomdwygh")
public suspend fun classificationsToIncludes(`value`: Output>) {
this.classificationsToIncludes = value
}
@JvmName("masvdmyrolfwvtjp")
public suspend fun classificationsToIncludes(vararg values: Output) {
this.classificationsToIncludes = Output.all(values.asList())
}
/**
* @param values List of Classification category of patches to be patched. Possible values are `Critical`, `Security`, `UpdateRollup`, `FeaturePack`, `ServicePack`, `Definition`, `Tools` and `Updates`.
*/
@JvmName("coosjxuqengirtow")
public suspend fun classificationsToIncludes(values: List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy