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

com.pulumi.awsnative.scheduler.kotlin.enums.ScheduleGroupState.kt Maven / Gradle / Ivy

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

package com.pulumi.awsnative.scheduler.kotlin.enums

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

/**
 * Specifies the state of the schedule group.
 */
public enum class ScheduleGroupState(
    public val javaValue: com.pulumi.awsnative.scheduler.enums.ScheduleGroupState,
) : ConvertibleToJava {
    Active(com.pulumi.awsnative.scheduler.enums.ScheduleGroupState.Active),
    Deleting(com.pulumi.awsnative.scheduler.enums.ScheduleGroupState.Deleting),
    ;

    override fun toJava(): com.pulumi.awsnative.scheduler.enums.ScheduleGroupState = javaValue

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy