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

com.pulumi.azurenative.azurefleet.kotlin.enums.LinuxVMGuestPatchMode.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 Patching to IaaS virtual machine or virtual
 * machines associated to virtual machine scale set with OrchestrationMode as
 * Flexible.

Possible values are:

**ImageDefault** - The * virtual machine's default patching configuration is used.

* **AutomaticByPlatform** - The virtual machine will be automatically updated by * the platform. The property provisionVMAgent must be true */ public enum class LinuxVMGuestPatchMode( public val javaValue: com.pulumi.azurenative.azurefleet.enums.LinuxVMGuestPatchMode, ) : ConvertibleToJava { /** * The virtual machine's default patching configuration is used. */ ImageDefault(com.pulumi.azurenative.azurefleet.enums.LinuxVMGuestPatchMode.ImageDefault), /** * The virtual machine will be automatically updated by the platform. The property provisionVMAgent must be true. */ AutomaticByPlatform(com.pulumi.azurenative.azurefleet.enums.LinuxVMGuestPatchMode.AutomaticByPlatform), ; override fun toJava(): com.pulumi.azurenative.azurefleet.enums.LinuxVMGuestPatchMode = javaValue public companion object { public fun toKotlin(javaType: com.pulumi.azurenative.azurefleet.enums.LinuxVMGuestPatchMode): LinuxVMGuestPatchMode = LinuxVMGuestPatchMode.values().first { it.javaValue == javaType } } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy