commonMain.aws.sdk.kotlin.services.computeoptimizer.serde.EcsServiceProjectedUtilizationMetricDocumentDeserializer.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.serde
import aws.sdk.kotlin.services.computeoptimizer.model.EcsServiceMetricName
import aws.sdk.kotlin.services.computeoptimizer.model.EcsServiceMetricStatistic
import aws.sdk.kotlin.services.computeoptimizer.model.EcsServiceProjectedUtilizationMetric
import aws.smithy.kotlin.runtime.serde.Deserializer
import aws.smithy.kotlin.runtime.serde.SdkFieldDescriptor
import aws.smithy.kotlin.runtime.serde.SdkObjectDescriptor
import aws.smithy.kotlin.runtime.serde.SerialKind
import aws.smithy.kotlin.runtime.serde.asSdkSerializable
import aws.smithy.kotlin.runtime.serde.deserializeList
import aws.smithy.kotlin.runtime.serde.deserializeMap
import aws.smithy.kotlin.runtime.serde.deserializeStruct
import aws.smithy.kotlin.runtime.serde.field
import aws.smithy.kotlin.runtime.serde.json.JsonDeserializer
import aws.smithy.kotlin.runtime.serde.json.JsonSerialName
import aws.smithy.kotlin.runtime.serde.serializeList
import aws.smithy.kotlin.runtime.serde.serializeMap
import aws.smithy.kotlin.runtime.serde.serializeStruct
internal fun deserializeEcsServiceProjectedUtilizationMetricDocument(deserializer: Deserializer): EcsServiceProjectedUtilizationMetric {
val builder = EcsServiceProjectedUtilizationMetric.Builder()
val LOWERBOUNDVALUE_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Double, JsonSerialName("lowerBoundValue"))
val NAME_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Enum, JsonSerialName("name"))
val STATISTIC_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Enum, JsonSerialName("statistic"))
val UPPERBOUNDVALUE_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Double, JsonSerialName("upperBoundValue"))
val OBJ_DESCRIPTOR = SdkObjectDescriptor.build {
field(LOWERBOUNDVALUE_DESCRIPTOR)
field(NAME_DESCRIPTOR)
field(STATISTIC_DESCRIPTOR)
field(UPPERBOUNDVALUE_DESCRIPTOR)
}
deserializer.deserializeStruct(OBJ_DESCRIPTOR) {
loop@while (true) {
when (findNextFieldIndex()) {
LOWERBOUNDVALUE_DESCRIPTOR.index -> builder.lowerBoundValue = deserializeDouble()
NAME_DESCRIPTOR.index -> builder.name = deserializeString().let { EcsServiceMetricName.fromValue(it) }
STATISTIC_DESCRIPTOR.index -> builder.statistic = deserializeString().let { EcsServiceMetricStatistic.fromValue(it) }
UPPERBOUNDVALUE_DESCRIPTOR.index -> builder.upperBoundValue = deserializeDouble()
null -> break@loop
else -> skipValue()
}
}
}
builder.correctErrors()
return builder.build()
}