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

commonMain.aws.sdk.kotlin.services.omics.model.ReadSetExportJobStatus.kt Maven / Gradle / Ivy

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

package aws.sdk.kotlin.services.omics.model

import kotlin.collections.List

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

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

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

    public object Completed : aws.sdk.kotlin.services.omics.model.ReadSetExportJobStatus() {
        override val value: kotlin.String = "COMPLETED"
        override fun toString(): kotlin.String = "Completed"
    }

    public object CompletedWithFailures : aws.sdk.kotlin.services.omics.model.ReadSetExportJobStatus() {
        override val value: kotlin.String = "COMPLETED_WITH_FAILURES"
        override fun toString(): kotlin.String = "CompletedWithFailures"
    }

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

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

    public object Submitted : aws.sdk.kotlin.services.omics.model.ReadSetExportJobStatus() {
        override val value: kotlin.String = "SUBMITTED"
        override fun toString(): kotlin.String = "Submitted"
    }

    public data class SdkUnknown(override val value: kotlin.String) : aws.sdk.kotlin.services.omics.model.ReadSetExportJobStatus() {
        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.omics.model.ReadSetExportJobStatus = when (value) {
            "CANCELLED" -> Cancelled
            "CANCELLING" -> Cancelling
            "COMPLETED" -> Completed
            "COMPLETED_WITH_FAILURES" -> CompletedWithFailures
            "FAILED" -> Failed
            "IN_PROGRESS" -> InProgress
            "SUBMITTED" -> Submitted
            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,
            Completed,
            CompletedWithFailures,
            Failed,
            InProgress,
            Submitted,
        )
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy