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