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

commonMain.aws.sdk.kotlin.services.proton.model.DeploymentStatus.kt Maven / Gradle / Ivy

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

package aws.sdk.kotlin.services.proton.model

import kotlin.collections.List

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

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

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

    public object DeleteComplete : aws.sdk.kotlin.services.proton.model.DeploymentStatus() {
        override val value: kotlin.String = "DELETE_COMPLETE"
        override fun toString(): kotlin.String = "DeleteComplete"
    }

    public object DeleteFailed : aws.sdk.kotlin.services.proton.model.DeploymentStatus() {
        override val value: kotlin.String = "DELETE_FAILED"
        override fun toString(): kotlin.String = "DeleteFailed"
    }

    public object DeleteInProgress : aws.sdk.kotlin.services.proton.model.DeploymentStatus() {
        override val value: kotlin.String = "DELETE_IN_PROGRESS"
        override fun toString(): kotlin.String = "DeleteInProgress"
    }

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

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

    public object Succeeded : aws.sdk.kotlin.services.proton.model.DeploymentStatus() {
        override val value: kotlin.String = "SUCCEEDED"
        override fun toString(): kotlin.String = "Succeeded"
    }

    public data class SdkUnknown(override val value: kotlin.String) : aws.sdk.kotlin.services.proton.model.DeploymentStatus() {
        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.proton.model.DeploymentStatus = when (value) {
            "CANCELLED" -> Cancelled
            "CANCELLING" -> Cancelling
            "DELETE_COMPLETE" -> DeleteComplete
            "DELETE_FAILED" -> DeleteFailed
            "DELETE_IN_PROGRESS" -> DeleteInProgress
            "FAILED" -> Failed
            "IN_PROGRESS" -> InProgress
            "SUCCEEDED" -> Succeeded
            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,
            DeleteComplete,
            DeleteFailed,
            DeleteInProgress,
            Failed,
            InProgress,
            Succeeded,
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy