All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.azurenative.azurefleet.kotlin.enums.LinuxPatchAssessmentMode.kt Maven / Gradle / Ivy

Go to download

Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.

There is a newer version: 2.82.0.0
Show newest version
@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