commonMain.aws.sdk.kotlin.services.wisdom.model.QuickResponseStatus.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of wisdom-jvm Show documentation
Show all versions of wisdom-jvm Show documentation
The AWS SDK for Kotlin client for Wisdom
// 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,
)
}
}