commonMain.aws.sdk.kotlin.services.computeoptimizer.model.EbsMetricName.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of computeoptimizer-jvm Show documentation
Show all versions of computeoptimizer-jvm Show documentation
The AWS SDK for Kotlin client for Compute Optimizer
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.computeoptimizer.model
import kotlin.collections.List
public sealed class EbsMetricName {
public abstract val value: kotlin.String
public object VolumeReadBytesPerSecond : aws.sdk.kotlin.services.computeoptimizer.model.EbsMetricName() {
override val value: kotlin.String = "VolumeReadBytesPerSecond"
override fun toString(): kotlin.String = "VolumeReadBytesPerSecond"
}
public object VolumeReadOpsPerSecond : aws.sdk.kotlin.services.computeoptimizer.model.EbsMetricName() {
override val value: kotlin.String = "VolumeReadOpsPerSecond"
override fun toString(): kotlin.String = "VolumeReadOpsPerSecond"
}
public object VolumeWriteBytesPerSecond : aws.sdk.kotlin.services.computeoptimizer.model.EbsMetricName() {
override val value: kotlin.String = "VolumeWriteBytesPerSecond"
override fun toString(): kotlin.String = "VolumeWriteBytesPerSecond"
}
public object VolumeWriteOpsPerSecond : aws.sdk.kotlin.services.computeoptimizer.model.EbsMetricName() {
override val value: kotlin.String = "VolumeWriteOpsPerSecond"
override fun toString(): kotlin.String = "VolumeWriteOpsPerSecond"
}
public data class SdkUnknown(override val value: kotlin.String) : aws.sdk.kotlin.services.computeoptimizer.model.EbsMetricName() {
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.computeoptimizer.model.EbsMetricName = when (value) {
"VolumeReadBytesPerSecond" -> VolumeReadBytesPerSecond
"VolumeReadOpsPerSecond" -> VolumeReadOpsPerSecond
"VolumeWriteBytesPerSecond" -> VolumeWriteBytesPerSecond
"VolumeWriteOpsPerSecond" -> VolumeWriteOpsPerSecond
else -> SdkUnknown(value)
}
/**
* Get a list of all possible variants
*/
public fun values(): kotlin.collections.List = values
private val values: kotlin.collections.List = listOf(
VolumeReadBytesPerSecond,
VolumeReadOpsPerSecond,
VolumeWriteBytesPerSecond,
VolumeWriteOpsPerSecond,
)
}
}