All Downloads are FREE. Search and download functionalities are using the official Maven repository.

commonMain.aws.sdk.kotlin.services.lightsail.serde.MetricDatapointDocumentDeserializer.kt Maven / Gradle / Ivy

// Code generated by smithy-kotlin-codegen. DO NOT EDIT!

package aws.sdk.kotlin.services.lightsail.serde

import aws.sdk.kotlin.services.lightsail.model.MetricDatapoint
import aws.sdk.kotlin.services.lightsail.model.MetricUnit
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

internal fun deserializeMetricDatapointDocument(deserializer: Deserializer): MetricDatapoint {
    val builder = MetricDatapoint.Builder()
    val AVERAGE_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Double, JsonSerialName("average"))
    val MAXIMUM_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Double, JsonSerialName("maximum"))
    val MINIMUM_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Double, JsonSerialName("minimum"))
    val SAMPLECOUNT_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Double, JsonSerialName("sampleCount"))
    val SUM_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Double, JsonSerialName("sum"))
    val TIMESTAMP_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Timestamp, JsonSerialName("timestamp"))
    val UNIT_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Enum, JsonSerialName("unit"))
    val OBJ_DESCRIPTOR = SdkObjectDescriptor.build {
        field(AVERAGE_DESCRIPTOR)
        field(MAXIMUM_DESCRIPTOR)
        field(MINIMUM_DESCRIPTOR)
        field(SAMPLECOUNT_DESCRIPTOR)
        field(SUM_DESCRIPTOR)
        field(TIMESTAMP_DESCRIPTOR)
        field(UNIT_DESCRIPTOR)
    }

    deserializer.deserializeStruct(OBJ_DESCRIPTOR) {
        loop@while (true) {
            when (findNextFieldIndex()) {
                AVERAGE_DESCRIPTOR.index -> builder.average = deserializeDouble()
                MAXIMUM_DESCRIPTOR.index -> builder.maximum = deserializeDouble()
                MINIMUM_DESCRIPTOR.index -> builder.minimum = deserializeDouble()
                SAMPLECOUNT_DESCRIPTOR.index -> builder.sampleCount = deserializeDouble()
                SUM_DESCRIPTOR.index -> builder.sum = deserializeDouble()
                TIMESTAMP_DESCRIPTOR.index -> builder.timestamp = deserializeString().let { Instant.fromEpochSeconds(it) }
                UNIT_DESCRIPTOR.index -> builder.unit = deserializeString().let { MetricUnit.fromValue(it) }
                null -> break@loop
                else -> skipValue()
            }
        }
    }
    builder.correctErrors()
    return builder.build()
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy