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

com.pulumi.awsnative.transfer.kotlin.enums.AgreementStatus.kt Maven / Gradle / Ivy

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

package com.pulumi.awsnative.transfer.kotlin.enums

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

/**
 * Specifies the status of the agreement.
 */
public enum class AgreementStatus(
    public val javaValue: com.pulumi.awsnative.transfer.enums.AgreementStatus,
) : ConvertibleToJava {
    Active(com.pulumi.awsnative.transfer.enums.AgreementStatus.Active),
    Inactive(com.pulumi.awsnative.transfer.enums.AgreementStatus.Inactive),
    ;

    override fun toJava(): com.pulumi.awsnative.transfer.enums.AgreementStatus = javaValue

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy