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

commonMain.aws.sdk.kotlin.services.fsx.model.UpdateOpenZfsVolumeOption.kt Maven / Gradle / Ivy

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

package aws.sdk.kotlin.services.fsx.model

import kotlin.collections.List

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

    public object DeleteClonedVolumes : aws.sdk.kotlin.services.fsx.model.UpdateOpenZfsVolumeOption() {
        override val value: kotlin.String = "DELETE_CLONED_VOLUMES"
        override fun toString(): kotlin.String = "DeleteClonedVolumes"
    }

    public object DeleteIntermediateData : aws.sdk.kotlin.services.fsx.model.UpdateOpenZfsVolumeOption() {
        override val value: kotlin.String = "DELETE_INTERMEDIATE_DATA"
        override fun toString(): kotlin.String = "DeleteIntermediateData"
    }

    public object DeleteIntermediateSnapshots : aws.sdk.kotlin.services.fsx.model.UpdateOpenZfsVolumeOption() {
        override val value: kotlin.String = "DELETE_INTERMEDIATE_SNAPSHOTS"
        override fun toString(): kotlin.String = "DeleteIntermediateSnapshots"
    }

    public data class SdkUnknown(override val value: kotlin.String) : aws.sdk.kotlin.services.fsx.model.UpdateOpenZfsVolumeOption() {
        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.fsx.model.UpdateOpenZfsVolumeOption = when (value) {
            "DELETE_CLONED_VOLUMES" -> DeleteClonedVolumes
            "DELETE_INTERMEDIATE_DATA" -> DeleteIntermediateData
            "DELETE_INTERMEDIATE_SNAPSHOTS" -> DeleteIntermediateSnapshots
            else -> SdkUnknown(value)
        }

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

        private val values: kotlin.collections.List = listOf(
            DeleteClonedVolumes,
            DeleteIntermediateData,
            DeleteIntermediateSnapshots,
        )
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy