Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azure.automation.kotlin.inputs
import com.pulumi.azure.automation.inputs.SoftwareUpdateConfigurationLinuxArgs.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 classifications included in the Software Update Configuration. Possible values are `Unclassified`, `Critical`, `Security` and `Other`.
* > **NOTE:** The `classifications_included` property will become `Required` in version 4.0 of the Provider.
* @property excludedPackages Specifies a list of packages to excluded from the Software Update Configuration.
* @property includedPackages Specifies a list of packages to included from the Software Update Configuration.
* @property reboot Specifies the reboot settings after software update, possible values are `IfRequired`, `Never`, `RebootOnly` and `Always`. Defaults to `IfRequired`.
*/
public data class SoftwareUpdateConfigurationLinuxArgs(
@Deprecated(
message = """
this property is deprecated and will be removed in version 4.0 of the provider, please use
`classifications_included` instead.
""",
)
public val classificationIncluded: Output? = null,
public val classificationsIncludeds: Output>? = null,
public val excludedPackages: Output>? = null,
public val includedPackages: Output>? = null,
public val reboot: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azure.automation.inputs.SoftwareUpdateConfigurationLinuxArgs =
com.pulumi.azure.automation.inputs.SoftwareUpdateConfigurationLinuxArgs.builder()
.classificationIncluded(classificationIncluded?.applyValue({ args0 -> args0 }))
.classificationsIncludeds(
classificationsIncludeds?.applyValue({ args0 ->
args0.map({ args0 ->
args0
})
}),
)
.excludedPackages(excludedPackages?.applyValue({ args0 -> args0.map({ args0 -> args0 }) }))
.includedPackages(includedPackages?.applyValue({ args0 -> args0.map({ args0 -> args0 }) }))
.reboot(reboot?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [SoftwareUpdateConfigurationLinuxArgs].
*/
@PulumiTagMarker
public class SoftwareUpdateConfigurationLinuxArgsBuilder internal constructor() {
private var classificationIncluded: Output? = null
private var classificationsIncludeds: Output>? = null
private var excludedPackages: Output>? = null
private var includedPackages: Output>? = null
private var reboot: Output? = null
/**
* @param value
*/
@Deprecated(
message = """
this property is deprecated and will be removed in version 4.0 of the provider, please use
`classifications_included` instead.
""",
)
@JvmName("hqwkwugqhtehnorm")
public suspend fun classificationIncluded(`value`: Output) {
this.classificationIncluded = value
}
/**
* @param value Specifies the list of update classifications included in the Software Update Configuration. Possible values are `Unclassified`, `Critical`, `Security` and `Other`.
* > **NOTE:** The `classifications_included` property will become `Required` in version 4.0 of the Provider.
*/
@JvmName("xavqevewlmnfsqku")
public suspend fun classificationsIncludeds(`value`: Output>) {
this.classificationsIncludeds = value
}
@JvmName("bsfhaylwbmlelfrp")
public suspend fun classificationsIncludeds(vararg values: Output) {
this.classificationsIncludeds = Output.all(values.asList())
}
/**
* @param values Specifies the list of update classifications included in the Software Update Configuration. Possible values are `Unclassified`, `Critical`, `Security` and `Other`.
* > **NOTE:** The `classifications_included` property will become `Required` in version 4.0 of the Provider.
*/
@JvmName("hmasijabovtiptcu")
public suspend fun classificationsIncludeds(values: List