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

com.pulumi.azurenative.apicenter.kotlin.enums.DeploymentState.kt Maven / Gradle / Ivy

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

package com.pulumi.azurenative.apicenter.kotlin.enums

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

/**
 * State of API deployment.
 */
public enum class DeploymentState(
    public val javaValue: com.pulumi.azurenative.apicenter.enums.DeploymentState,
) : ConvertibleToJava {
    /**
     * Active State
     */
    Active(com.pulumi.azurenative.apicenter.enums.DeploymentState.Active),

    /**
     * Inactive State
     */
    Inactive(com.pulumi.azurenative.apicenter.enums.DeploymentState.Inactive),
    ;

    override fun toJava(): com.pulumi.azurenative.apicenter.enums.DeploymentState = javaValue

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy