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

commonMain.aws.sdk.kotlin.services.applicationdiscoveryservice.model.ContinuousExportStatus.kt Maven / Gradle / Ivy

There is a newer version: 1.3.35
Show newest version
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!

package aws.sdk.kotlin.services.applicationdiscoveryservice.model

import kotlin.collections.List

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

    public object Active : aws.sdk.kotlin.services.applicationdiscoveryservice.model.ContinuousExportStatus() {
        override val value: kotlin.String = "ACTIVE"
        override fun toString(): kotlin.String = "Active"
    }

    public object Error : aws.sdk.kotlin.services.applicationdiscoveryservice.model.ContinuousExportStatus() {
        override val value: kotlin.String = "ERROR"
        override fun toString(): kotlin.String = "Error"
    }

    public object Inactive : aws.sdk.kotlin.services.applicationdiscoveryservice.model.ContinuousExportStatus() {
        override val value: kotlin.String = "INACTIVE"
        override fun toString(): kotlin.String = "Inactive"
    }

    public object StartFailed : aws.sdk.kotlin.services.applicationdiscoveryservice.model.ContinuousExportStatus() {
        override val value: kotlin.String = "START_FAILED"
        override fun toString(): kotlin.String = "StartFailed"
    }

    public object StartInProgress : aws.sdk.kotlin.services.applicationdiscoveryservice.model.ContinuousExportStatus() {
        override val value: kotlin.String = "START_IN_PROGRESS"
        override fun toString(): kotlin.String = "StartInProgress"
    }

    public object StopFailed : aws.sdk.kotlin.services.applicationdiscoveryservice.model.ContinuousExportStatus() {
        override val value: kotlin.String = "STOP_FAILED"
        override fun toString(): kotlin.String = "StopFailed"
    }

    public object StopInProgress : aws.sdk.kotlin.services.applicationdiscoveryservice.model.ContinuousExportStatus() {
        override val value: kotlin.String = "STOP_IN_PROGRESS"
        override fun toString(): kotlin.String = "StopInProgress"
    }

    public data class SdkUnknown(override val value: kotlin.String) : aws.sdk.kotlin.services.applicationdiscoveryservice.model.ContinuousExportStatus() {
        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.applicationdiscoveryservice.model.ContinuousExportStatus = when (value) {
            "ACTIVE" -> Active
            "ERROR" -> Error
            "INACTIVE" -> Inactive
            "START_FAILED" -> StartFailed
            "START_IN_PROGRESS" -> StartInProgress
            "STOP_FAILED" -> StopFailed
            "STOP_IN_PROGRESS" -> StopInProgress
            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,
            Error,
            Inactive,
            StartFailed,
            StartInProgress,
            StopFailed,
            StopInProgress,
        )
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy