![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azurenative.azurefleet.kotlin.enums.LinuxPatchAssessmentMode.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.azurefleet.kotlin.enums
import com.pulumi.kotlin.ConvertibleToJava
import kotlin.Suppress
/**
* Specifies the mode of VM Guest Patch Assessment for the IaaS virtual
* machine.
Possible values are:
**ImageDefault** - You
* control the timing of patch assessments on a virtual machine.
* **AutomaticByPlatform** - The platform will trigger periodic patch assessments.
* The property provisionVMAgent must be true.
*/
public enum class LinuxPatchAssessmentMode(
public val javaValue: com.pulumi.azurenative.azurefleet.enums.LinuxPatchAssessmentMode,
) : ConvertibleToJava {
/**
* You control the timing of patch assessments on a virtual machine.
*/
ImageDefault(com.pulumi.azurenative.azurefleet.enums.LinuxPatchAssessmentMode.ImageDefault),
/**
* The platform will trigger periodic patch assessments.The property provisionVMAgent must be true.
*/
AutomaticByPlatform(com.pulumi.azurenative.azurefleet.enums.LinuxPatchAssessmentMode.AutomaticByPlatform),
;
override fun toJava(): com.pulumi.azurenative.azurefleet.enums.LinuxPatchAssessmentMode =
javaValue
public companion object {
public fun toKotlin(javaType: com.pulumi.azurenative.azurefleet.enums.LinuxPatchAssessmentMode): LinuxPatchAssessmentMode =
LinuxPatchAssessmentMode.values().first { it.javaValue == javaType }
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy