
com.pulumi.azure.automation.kotlin.inputs.SoftwareUpdateConfigurationWindowsArgs.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azure.automation.kotlin.inputs
import com.pulumi.azure.automation.inputs.SoftwareUpdateConfigurationWindowsArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.Deprecated
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
import kotlin.jvm.JvmName
/**
*
* @property classificationIncluded
* @property classificationsIncludeds Specifies the list of update classification. Possible values are `Unclassified`, `Critical`, `Security`, `UpdateRollup`, `FeaturePack`, `ServicePack`, `Definition`, `Tools` and `Updates`.
* @property excludedKnowledgeBaseNumbers Specifies a list of knowledge base numbers excluded.
* @property includedKnowledgeBaseNumbers Specifies a list of knowledge base numbers included.
* @property reboot Specifies the reboot settings after software update, possible values are `IfRequired`, `Never`, `RebootOnly` and `Always`. Defaults to `IfRequired`.
*/
public data class SoftwareUpdateConfigurationWindowsArgs(
@Deprecated(
message = """
windows classification can be set as a list, use `classifications_included` instead.
""",
)
public val classificationIncluded: Output? = null,
public val classificationsIncludeds: Output>? = null,
public val excludedKnowledgeBaseNumbers: Output>? = null,
public val includedKnowledgeBaseNumbers: Output>? = null,
public val reboot: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azure.automation.inputs.SoftwareUpdateConfigurationWindowsArgs =
com.pulumi.azure.automation.inputs.SoftwareUpdateConfigurationWindowsArgs.builder()
.classificationIncluded(classificationIncluded?.applyValue({ args0 -> args0 }))
.classificationsIncludeds(
classificationsIncludeds?.applyValue({ args0 ->
args0.map({ args0 ->
args0
})
}),
)
.excludedKnowledgeBaseNumbers(
excludedKnowledgeBaseNumbers?.applyValue({ args0 ->
args0.map({ args0 -> args0 })
}),
)
.includedKnowledgeBaseNumbers(
includedKnowledgeBaseNumbers?.applyValue({ args0 ->
args0.map({ args0 -> args0 })
}),
)
.reboot(reboot?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [SoftwareUpdateConfigurationWindowsArgs].
*/
@PulumiTagMarker
public class SoftwareUpdateConfigurationWindowsArgsBuilder internal constructor() {
private var classificationIncluded: Output? = null
private var classificationsIncludeds: Output>? = null
private var excludedKnowledgeBaseNumbers: Output>? = null
private var includedKnowledgeBaseNumbers: Output>? = null
private var reboot: Output? = null
/**
* @param value
*/
@Deprecated(
message = """
windows classification can be set as a list, use `classifications_included` instead.
""",
)
@JvmName("gtrtoomuxckyejei")
public suspend fun classificationIncluded(`value`: Output) {
this.classificationIncluded = value
}
/**
* @param value Specifies the list of update classification. Possible values are `Unclassified`, `Critical`, `Security`, `UpdateRollup`, `FeaturePack`, `ServicePack`, `Definition`, `Tools` and `Updates`.
*/
@JvmName("pquofkoecqqiqteb")
public suspend fun classificationsIncludeds(`value`: Output>) {
this.classificationsIncludeds = value
}
@JvmName("wbqjafbaiwqjogjb")
public suspend fun classificationsIncludeds(vararg values: Output) {
this.classificationsIncludeds = Output.all(values.asList())
}
/**
* @param values Specifies the list of update classification. Possible values are `Unclassified`, `Critical`, `Security`, `UpdateRollup`, `FeaturePack`, `ServicePack`, `Definition`, `Tools` and `Updates`.
*/
@JvmName("frxftfaxvuunavrh")
public suspend fun classificationsIncludeds(values: List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy