commonMain.aws.sdk.kotlin.services.proton.model.TemplateVersionStatus.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of proton-jvm Show documentation
Show all versions of proton-jvm Show documentation
The AWS SDK for Kotlin client for Proton
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.proton.model
import kotlin.collections.List
public sealed class TemplateVersionStatus {
public abstract val value: kotlin.String
public object Draft : aws.sdk.kotlin.services.proton.model.TemplateVersionStatus() {
override val value: kotlin.String = "DRAFT"
override fun toString(): kotlin.String = "Draft"
}
public object Published : aws.sdk.kotlin.services.proton.model.TemplateVersionStatus() {
override val value: kotlin.String = "PUBLISHED"
override fun toString(): kotlin.String = "Published"
}
public object RegistrationFailed : aws.sdk.kotlin.services.proton.model.TemplateVersionStatus() {
override val value: kotlin.String = "REGISTRATION_FAILED"
override fun toString(): kotlin.String = "RegistrationFailed"
}
public object RegistrationInProgress : aws.sdk.kotlin.services.proton.model.TemplateVersionStatus() {
override val value: kotlin.String = "REGISTRATION_IN_PROGRESS"
override fun toString(): kotlin.String = "RegistrationInProgress"
}
public data class SdkUnknown(override val value: kotlin.String) : aws.sdk.kotlin.services.proton.model.TemplateVersionStatus() {
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.TemplateVersionStatus = when (value) {
"DRAFT" -> Draft
"PUBLISHED" -> Published
"REGISTRATION_FAILED" -> RegistrationFailed
"REGISTRATION_IN_PROGRESS" -> RegistrationInProgress
else -> SdkUnknown(value)
}
/**
* Get a list of all possible variants
*/
public fun values(): kotlin.collections.List = values
private val values: kotlin.collections.List = listOf(
Draft,
Published,
RegistrationFailed,
RegistrationInProgress,
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy