
com.pulumi.azurenative.connectedvmwarevsphere.kotlin.inputs.OsProfileLinuxConfigurationArgs.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azurenative.connectedvmwarevsphere.kotlin.inputs
import com.pulumi.azurenative.connectedvmwarevsphere.inputs.OsProfileLinuxConfigurationArgs.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.jvm.JvmName
/**
* Specifies the linux configuration for update management.
* @property assessmentMode Specifies the assessment mode.
* @property patchMode Specifies the patch mode.
*/
public data class OsProfileLinuxConfigurationArgs(
public val assessmentMode: Output? = null,
public val patchMode: Output? = null,
) :
ConvertibleToJava {
override fun toJava(): com.pulumi.azurenative.connectedvmwarevsphere.inputs.OsProfileLinuxConfigurationArgs =
com.pulumi.azurenative.connectedvmwarevsphere.inputs.OsProfileLinuxConfigurationArgs.builder()
.assessmentMode(assessmentMode?.applyValue({ args0 -> args0 }))
.patchMode(patchMode?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [OsProfileLinuxConfigurationArgs].
*/
@PulumiTagMarker
public class OsProfileLinuxConfigurationArgsBuilder internal constructor() {
private var assessmentMode: Output? = null
private var patchMode: Output? = null
/**
* @param value Specifies the assessment mode.
*/
@JvmName("jmujgfvretnspcpy")
public suspend fun assessmentMode(`value`: Output) {
this.assessmentMode = value
}
/**
* @param value Specifies the patch mode.
*/
@JvmName("vsnwucpupgreidvc")
public suspend fun patchMode(`value`: Output) {
this.patchMode = value
}
/**
* @param value Specifies the assessment mode.
*/
@JvmName("cygxvbrehprhhold")
public suspend fun assessmentMode(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.assessmentMode = mapped
}
/**
* @param value Specifies the patch mode.
*/
@JvmName("phaelbpbsrpplyyw")
public suspend fun patchMode(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.patchMode = mapped
}
internal fun build(): OsProfileLinuxConfigurationArgs = OsProfileLinuxConfigurationArgs(
assessmentMode = assessmentMode,
patchMode = patchMode,
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy