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

commonMain.aws.sdk.kotlin.services.neptunegraph.model.GraphStatus.kt Maven / Gradle / Ivy

// Code generated by smithy-kotlin-codegen. DO NOT EDIT!

package aws.sdk.kotlin.services.neptunegraph.model

import kotlin.collections.List

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

    public object Available : aws.sdk.kotlin.services.neptunegraph.model.GraphStatus() {
        override val value: kotlin.String = "AVAILABLE"
        override fun toString(): kotlin.String = "Available"
    }

    public object Creating : aws.sdk.kotlin.services.neptunegraph.model.GraphStatus() {
        override val value: kotlin.String = "CREATING"
        override fun toString(): kotlin.String = "Creating"
    }

    public object Deleting : aws.sdk.kotlin.services.neptunegraph.model.GraphStatus() {
        override val value: kotlin.String = "DELETING"
        override fun toString(): kotlin.String = "Deleting"
    }

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

    public object Importing : aws.sdk.kotlin.services.neptunegraph.model.GraphStatus() {
        override val value: kotlin.String = "IMPORTING"
        override fun toString(): kotlin.String = "Importing"
    }

    public object Resetting : aws.sdk.kotlin.services.neptunegraph.model.GraphStatus() {
        override val value: kotlin.String = "RESETTING"
        override fun toString(): kotlin.String = "Resetting"
    }

    public object Snapshotting : aws.sdk.kotlin.services.neptunegraph.model.GraphStatus() {
        override val value: kotlin.String = "SNAPSHOTTING"
        override fun toString(): kotlin.String = "Snapshotting"
    }

    public object Updating : aws.sdk.kotlin.services.neptunegraph.model.GraphStatus() {
        override val value: kotlin.String = "UPDATING"
        override fun toString(): kotlin.String = "Updating"
    }

    public data class SdkUnknown(override val value: kotlin.String) : aws.sdk.kotlin.services.neptunegraph.model.GraphStatus() {
        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.neptunegraph.model.GraphStatus = when (value) {
            "AVAILABLE" -> Available
            "CREATING" -> Creating
            "DELETING" -> Deleting
            "FAILED" -> Failed
            "IMPORTING" -> Importing
            "RESETTING" -> Resetting
            "SNAPSHOTTING" -> Snapshotting
            "UPDATING" -> Updating
            else -> SdkUnknown(value)
        }

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

        private val values: kotlin.collections.List = listOf(
            Available,
            Creating,
            Deleting,
            Failed,
            Importing,
            Resetting,
            Snapshotting,
            Updating,
        )
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy