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

commonMain.aws.sdk.kotlin.services.wisdom.model.QuickResponseStatus.kt Maven / Gradle / Ivy

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

package aws.sdk.kotlin.services.wisdom.model

import kotlin.collections.List

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

    public object Created : aws.sdk.kotlin.services.wisdom.model.QuickResponseStatus() {
        override val value: kotlin.String = "CREATED"
        override fun toString(): kotlin.String = "Created"
    }

    public object CreateFailed : aws.sdk.kotlin.services.wisdom.model.QuickResponseStatus() {
        override val value: kotlin.String = "CREATE_FAILED"
        override fun toString(): kotlin.String = "CreateFailed"
    }

    public object CreateInProgress : aws.sdk.kotlin.services.wisdom.model.QuickResponseStatus() {
        override val value: kotlin.String = "CREATE_IN_PROGRESS"
        override fun toString(): kotlin.String = "CreateInProgress"
    }

    public object Deleted : aws.sdk.kotlin.services.wisdom.model.QuickResponseStatus() {
        override val value: kotlin.String = "DELETED"
        override fun toString(): kotlin.String = "Deleted"
    }

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

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

    public object UpdateFailed : aws.sdk.kotlin.services.wisdom.model.QuickResponseStatus() {
        override val value: kotlin.String = "UPDATE_FAILED"
        override fun toString(): kotlin.String = "UpdateFailed"
    }

    public object UpdateInProgress : aws.sdk.kotlin.services.wisdom.model.QuickResponseStatus() {
        override val value: kotlin.String = "UPDATE_IN_PROGRESS"
        override fun toString(): kotlin.String = "UpdateInProgress"
    }

    public data class SdkUnknown(override val value: kotlin.String) : aws.sdk.kotlin.services.wisdom.model.QuickResponseStatus() {
        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.wisdom.model.QuickResponseStatus = when (value) {
            "CREATED" -> Created
            "CREATE_FAILED" -> CreateFailed
            "CREATE_IN_PROGRESS" -> CreateInProgress
            "DELETED" -> Deleted
            "DELETE_FAILED" -> DeleteFailed
            "DELETE_IN_PROGRESS" -> DeleteInProgress
            "UPDATE_FAILED" -> UpdateFailed
            "UPDATE_IN_PROGRESS" -> UpdateInProgress
            else -> SdkUnknown(value)
        }

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

        private val values: kotlin.collections.List = listOf(
            Created,
            CreateFailed,
            CreateInProgress,
            Deleted,
            DeleteFailed,
            DeleteInProgress,
            UpdateFailed,
            UpdateInProgress,
        )
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy