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

com.pulumi.azurenative.solutions.kotlin.enums.DeploymentMode.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.solutions.kotlin.enums

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

/**
 * The managed application deployment mode.
 */
public enum class DeploymentMode(
    public val javaValue: com.pulumi.azurenative.solutions.enums.DeploymentMode,
) : ConvertibleToJava {
    NotSpecified(com.pulumi.azurenative.solutions.enums.DeploymentMode.NotSpecified),
    Incremental(com.pulumi.azurenative.solutions.enums.DeploymentMode.Incremental),
    Complete(com.pulumi.azurenative.solutions.enums.DeploymentMode.Complete),
    ;

    override fun toJava(): com.pulumi.azurenative.solutions.enums.DeploymentMode = javaValue

    public companion object {
        public fun toKotlin(javaType: com.pulumi.azurenative.solutions.enums.DeploymentMode): DeploymentMode = DeploymentMode.values().first { it.javaValue == javaType }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy