commonMain.aws.sdk.kotlin.services.computeoptimizer.serde.EcsServiceProjectedMetricDocumentDeserializer.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.EcsServiceProjectedMetric
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
import aws.smithy.kotlin.runtime.time.Instant
import aws.smithy.kotlin.runtime.time.TimestampFormat
import kotlin.collections.mutableListOf
internal fun deserializeEcsServiceProjectedMetricDocument(deserializer: Deserializer): EcsServiceProjectedMetric {
val builder = EcsServiceProjectedMetric.Builder()
val LOWERBOUNDVALUES_DESCRIPTOR = SdkFieldDescriptor(SerialKind.List, JsonSerialName("lowerBoundValues"))
val NAME_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Enum, JsonSerialName("name"))
val TIMESTAMPS_DESCRIPTOR = SdkFieldDescriptor(SerialKind.List, JsonSerialName("timestamps"))
val UPPERBOUNDVALUES_DESCRIPTOR = SdkFieldDescriptor(SerialKind.List, JsonSerialName("upperBoundValues"))
val OBJ_DESCRIPTOR = SdkObjectDescriptor.build {
field(LOWERBOUNDVALUES_DESCRIPTOR)
field(NAME_DESCRIPTOR)
field(TIMESTAMPS_DESCRIPTOR)
field(UPPERBOUNDVALUES_DESCRIPTOR)
}
deserializer.deserializeStruct(OBJ_DESCRIPTOR) {
loop@while (true) {
when (findNextFieldIndex()) {
LOWERBOUNDVALUES_DESCRIPTOR.index -> builder.lowerBoundValues =
deserializer.deserializeList(LOWERBOUNDVALUES_DESCRIPTOR) {
val col0 = mutableListOf()
while (hasNextElement()) {
val el0 = if (nextHasValue()) { deserializeDouble() } else { deserializeNull(); continue }
col0.add(el0)
}
col0
}
NAME_DESCRIPTOR.index -> builder.name = deserializeString().let { EcsServiceMetricName.fromValue(it) }
TIMESTAMPS_DESCRIPTOR.index -> builder.timestamps =
deserializer.deserializeList(TIMESTAMPS_DESCRIPTOR) {
val col0 = mutableListOf()
while (hasNextElement()) {
val el0 = if (nextHasValue()) { deserializeInstant(TimestampFormat.EPOCH_SECONDS) } else { deserializeNull(); continue }
col0.add(el0)
}
col0
}
UPPERBOUNDVALUES_DESCRIPTOR.index -> builder.upperBoundValues =
deserializer.deserializeList(UPPERBOUNDVALUES_DESCRIPTOR) {
val col0 = mutableListOf()
while (hasNextElement()) {
val el0 = if (nextHasValue()) { deserializeDouble() } else { deserializeNull(); continue }
col0.add(el0)
}
col0
}
null -> break@loop
else -> skipValue()
}
}
}
builder.correctErrors()
return builder.build()
}