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

commonMain.aws.sdk.kotlin.services.backup.model.RestoreJobStatus.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.backup.model

import kotlin.collections.List

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

    public object Aborted : aws.sdk.kotlin.services.backup.model.RestoreJobStatus() {
        override val value: kotlin.String = "ABORTED"
        override fun toString(): kotlin.String = "Aborted"
    }

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

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

    public object Pending : aws.sdk.kotlin.services.backup.model.RestoreJobStatus() {
        override val value: kotlin.String = "PENDING"
        override fun toString(): kotlin.String = "Pending"
    }

    public object Running : aws.sdk.kotlin.services.backup.model.RestoreJobStatus() {
        override val value: kotlin.String = "RUNNING"
        override fun toString(): kotlin.String = "Running"
    }

    public data class SdkUnknown(override val value: kotlin.String) : aws.sdk.kotlin.services.backup.model.RestoreJobStatus() {
        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.backup.model.RestoreJobStatus = when (value) {
            "ABORTED" -> Aborted
            "COMPLETED" -> Completed
            "FAILED" -> Failed
            "PENDING" -> Pending
            "RUNNING" -> Running
            else -> SdkUnknown(value)
        }

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

        private val values: kotlin.collections.List = listOf(
            Aborted,
            Completed,
            Failed,
            Pending,
            Running,
        )
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy