commonMain.aws.sdk.kotlin.services.iotwireless.serde.MetricQueryValueDocumentDeserializer.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of iotwireless-jvm Show documentation
Show all versions of iotwireless-jvm Show documentation
The AWS Kotlin client for IoT Wireless
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.iotwireless.serde
import aws.sdk.kotlin.services.iotwireless.model.MetricQueryValue
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 deserializeMetricQueryValueDocument(deserializer: Deserializer): MetricQueryValue {
val builder = MetricQueryValue.Builder()
val AVG_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Double, JsonSerialName("Avg"))
val MAX_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Double, JsonSerialName("Max"))
val MIN_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Double, JsonSerialName("Min"))
val P90_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Double, JsonSerialName("P90"))
val STD_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Double, JsonSerialName("Std"))
val SUM_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Double, JsonSerialName("Sum"))
val OBJ_DESCRIPTOR = SdkObjectDescriptor.build {
field(AVG_DESCRIPTOR)
field(MAX_DESCRIPTOR)
field(MIN_DESCRIPTOR)
field(P90_DESCRIPTOR)
field(STD_DESCRIPTOR)
field(SUM_DESCRIPTOR)
}
deserializer.deserializeStruct(OBJ_DESCRIPTOR) {
loop@while (true) {
when (findNextFieldIndex()) {
AVG_DESCRIPTOR.index -> builder.avg = deserializeDouble()
MAX_DESCRIPTOR.index -> builder.max = deserializeDouble()
MIN_DESCRIPTOR.index -> builder.min = deserializeDouble()
P90_DESCRIPTOR.index -> builder.p90 = deserializeDouble()
STD_DESCRIPTOR.index -> builder.std = deserializeDouble()
SUM_DESCRIPTOR.index -> builder.sum = deserializeDouble()
null -> break@loop
else -> skipValue()
}
}
}
builder.correctErrors()
return builder.build()
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy