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

commonMain.aws.sdk.kotlin.services.autoscaling.model.InstanceRefreshStatus.kt Maven / Gradle / Ivy

There is a newer version: 1.3.76
Show newest version
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!

package aws.sdk.kotlin.services.autoscaling.model

import kotlin.collections.List

public sealed class InstanceRefreshStatus {
    public abstract val value: kotlin.String

    public object Cancelled : aws.sdk.kotlin.services.autoscaling.model.InstanceRefreshStatus() {
        override val value: kotlin.String = "Cancelled"
        override fun toString(): kotlin.String = "Cancelled"
    }

    public object Cancelling : aws.sdk.kotlin.services.autoscaling.model.InstanceRefreshStatus() {
        override val value: kotlin.String = "Cancelling"
        override fun toString(): kotlin.String = "Cancelling"
    }

    public object Failed : aws.sdk.kotlin.services.autoscaling.model.InstanceRefreshStatus() {
        override val value: kotlin.String = "Failed"
        override fun toString(): kotlin.String = "Failed"
    }

    public object InProgress : aws.sdk.kotlin.services.autoscaling.model.InstanceRefreshStatus() {
        override val value: kotlin.String = "InProgress"
        override fun toString(): kotlin.String = "InProgress"
    }

    public object Pending : aws.sdk.kotlin.services.autoscaling.model.InstanceRefreshStatus() {
        override val value: kotlin.String = "Pending"
        override fun toString(): kotlin.String = "Pending"
    }

    public object RollbackFailed : aws.sdk.kotlin.services.autoscaling.model.InstanceRefreshStatus() {
        override val value: kotlin.String = "RollbackFailed"
        override fun toString(): kotlin.String = "RollbackFailed"
    }

    public object RollbackInProgress : aws.sdk.kotlin.services.autoscaling.model.InstanceRefreshStatus() {
        override val value: kotlin.String = "RollbackInProgress"
        override fun toString(): kotlin.String = "RollbackInProgress"
    }

    public object RollbackSuccessful : aws.sdk.kotlin.services.autoscaling.model.InstanceRefreshStatus() {
        override val value: kotlin.String = "RollbackSuccessful"
        override fun toString(): kotlin.String = "RollbackSuccessful"
    }

    public object Successful : aws.sdk.kotlin.services.autoscaling.model.InstanceRefreshStatus() {
        override val value: kotlin.String = "Successful"
        override fun toString(): kotlin.String = "Successful"
    }

    public data class SdkUnknown(override val value: kotlin.String) : aws.sdk.kotlin.services.autoscaling.model.InstanceRefreshStatus() {
        override fun toString(): kotlin.String = "SdkUnknown($value)"
    }

    public companion object {
        /**
         * Convert a raw value to one of the sealed variants or [SdkUnknown]
         */
        public fun fromValue(value: kotlin.String): aws.sdk.kotlin.services.autoscaling.model.InstanceRefreshStatus = when (value) {
            "Cancelled" -> Cancelled
            "Cancelling" -> Cancelling
            "Failed" -> Failed
            "InProgress" -> InProgress
            "Pending" -> Pending
            "RollbackFailed" -> RollbackFailed
            "RollbackInProgress" -> RollbackInProgress
            "RollbackSuccessful" -> RollbackSuccessful
            "Successful" -> Successful
            else -> SdkUnknown(value)
        }

        /**
         * Get a list of all possible variants
         */
        public fun values(): kotlin.collections.List = values

        private val values: kotlin.collections.List = listOf(
            Cancelled,
            Cancelling,
            Failed,
            InProgress,
            Pending,
            RollbackFailed,
            RollbackInProgress,
            RollbackSuccessful,
            Successful,
        )
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy