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

com.pulumi.azurenative.billing.kotlin.enums.InvoiceSectionState.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.billing.kotlin.enums

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

/**
 * Identifies the status of an invoice section.
 */
public enum class InvoiceSectionState(
    public val javaValue: com.pulumi.azurenative.billing.enums.InvoiceSectionState,
) : ConvertibleToJava {
    Other(com.pulumi.azurenative.billing.enums.InvoiceSectionState.Other),
    Active(com.pulumi.azurenative.billing.enums.InvoiceSectionState.Active),
    Deleted(com.pulumi.azurenative.billing.enums.InvoiceSectionState.Deleted),
    Disabled(com.pulumi.azurenative.billing.enums.InvoiceSectionState.Disabled),
    UnderReview(com.pulumi.azurenative.billing.enums.InvoiceSectionState.UnderReview),
    Warned(com.pulumi.azurenative.billing.enums.InvoiceSectionState.Warned),
    Restricted(com.pulumi.azurenative.billing.enums.InvoiceSectionState.Restricted),
    ;

    override fun toJava(): com.pulumi.azurenative.billing.enums.InvoiceSectionState = javaValue

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy