commonMain.aws.sdk.kotlin.services.wisdom.model.KnowledgeBaseStatus.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 KnowledgeBaseStatus {
public abstract val value: kotlin.String
public object Active : aws.sdk.kotlin.services.wisdom.model.KnowledgeBaseStatus() {
override val value: kotlin.String = "ACTIVE"
override fun toString(): kotlin.String = "Active"
}
public object CreateFailed : aws.sdk.kotlin.services.wisdom.model.KnowledgeBaseStatus() {
override val value: kotlin.String = "CREATE_FAILED"
override fun toString(): kotlin.String = "CreateFailed"
}
public object CreateInProgress : aws.sdk.kotlin.services.wisdom.model.KnowledgeBaseStatus() {
override val value: kotlin.String = "CREATE_IN_PROGRESS"
override fun toString(): kotlin.String = "CreateInProgress"
}
public object Deleted : aws.sdk.kotlin.services.wisdom.model.KnowledgeBaseStatus() {
override val value: kotlin.String = "DELETED"
override fun toString(): kotlin.String = "Deleted"
}
public object DeleteFailed : aws.sdk.kotlin.services.wisdom.model.KnowledgeBaseStatus() {
override val value: kotlin.String = "DELETE_FAILED"
override fun toString(): kotlin.String = "DeleteFailed"
}
public object DeleteInProgress : aws.sdk.kotlin.services.wisdom.model.KnowledgeBaseStatus() {
override val value: kotlin.String = "DELETE_IN_PROGRESS"
override fun toString(): kotlin.String = "DeleteInProgress"
}
public data class SdkUnknown(override val value: kotlin.String) : aws.sdk.kotlin.services.wisdom.model.KnowledgeBaseStatus() {
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.KnowledgeBaseStatus = when (value) {
"ACTIVE" -> Active
"CREATE_FAILED" -> CreateFailed
"CREATE_IN_PROGRESS" -> CreateInProgress
"DELETED" -> Deleted
"DELETE_FAILED" -> DeleteFailed
"DELETE_IN_PROGRESS" -> DeleteInProgress
else -> SdkUnknown(value)
}
/**
* Get a list of all possible variants
*/
public fun values(): kotlin.collections.List = values
private val values: kotlin.collections.List = listOf(
Active,
CreateFailed,
CreateInProgress,
Deleted,
DeleteFailed,
DeleteInProgress,
)
}
}