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

com.pulumi.awsnative.workspacesthinclient.kotlin.enums.EnvironmentSoftwareSetUpdateSchedule.kt Maven / Gradle / Ivy

@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.awsnative.workspacesthinclient.kotlin.enums

import com.pulumi.kotlin.ConvertibleToJava
import kotlin.Suppress

/**
 * An option to define if software updates should be applied within a maintenance window.
 */
public enum class EnvironmentSoftwareSetUpdateSchedule(
    public val javaValue: com.pulumi.awsnative.workspacesthinclient.enums.EnvironmentSoftwareSetUpdateSchedule,
) :
    ConvertibleToJava {
    UseMaintenanceWindow(com.pulumi.awsnative.workspacesthinclient.enums.EnvironmentSoftwareSetUpdateSchedule.UseMaintenanceWindow),
    ApplyImmediately(com.pulumi.awsnative.workspacesthinclient.enums.EnvironmentSoftwareSetUpdateSchedule.ApplyImmediately),
    ;

    override fun toJava(): com.pulumi.awsnative.workspacesthinclient.enums.EnvironmentSoftwareSetUpdateSchedule =
        javaValue

    public companion object {
        public fun toKotlin(javaType: com.pulumi.awsnative.workspacesthinclient.enums.EnvironmentSoftwareSetUpdateSchedule): EnvironmentSoftwareSetUpdateSchedule =
            EnvironmentSoftwareSetUpdateSchedule.values().first { it.javaValue == javaType }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy