![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azurenative.billing.kotlin.enums.InvoiceSectionState.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-azure-native-kotlin Show documentation
Show all versions of pulumi-azure-native-kotlin Show documentation
Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.
@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