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

commonMain.aws.sdk.kotlin.services.applicationsignals.serde.RequestBasedServiceLevelIndicatorMetricDocumentDeserializer.kt Maven / Gradle / Ivy

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

package aws.sdk.kotlin.services.applicationsignals.serde

import aws.sdk.kotlin.services.applicationsignals.model.MetricDataQuery
import aws.sdk.kotlin.services.applicationsignals.model.RequestBasedServiceLevelIndicatorMetric
import aws.sdk.kotlin.services.applicationsignals.model.ServiceLevelIndicatorMetricType
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 kotlin.collections.mutableListOf
import kotlin.collections.mutableMapOf

internal fun deserializeRequestBasedServiceLevelIndicatorMetricDocument(deserializer: Deserializer): RequestBasedServiceLevelIndicatorMetric {
    val builder = RequestBasedServiceLevelIndicatorMetric.Builder()
    val KEYATTRIBUTES_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Map, JsonSerialName("KeyAttributes"))
    val METRICTYPE_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Enum, JsonSerialName("MetricType"))
    val MONITOREDREQUESTCOUNTMETRIC_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Struct, JsonSerialName("MonitoredRequestCountMetric"))
    val OPERATIONNAME_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("OperationName"))
    val TOTALREQUESTCOUNTMETRIC_DESCRIPTOR = SdkFieldDescriptor(SerialKind.List, JsonSerialName("TotalRequestCountMetric"))
    val OBJ_DESCRIPTOR = SdkObjectDescriptor.build {
        field(KEYATTRIBUTES_DESCRIPTOR)
        field(METRICTYPE_DESCRIPTOR)
        field(MONITOREDREQUESTCOUNTMETRIC_DESCRIPTOR)
        field(OPERATIONNAME_DESCRIPTOR)
        field(TOTALREQUESTCOUNTMETRIC_DESCRIPTOR)
    }

    deserializer.deserializeStruct(OBJ_DESCRIPTOR) {
        loop@while (true) {
            when (findNextFieldIndex()) {
                KEYATTRIBUTES_DESCRIPTOR.index -> builder.keyAttributes =
                    deserializer.deserializeMap(KEYATTRIBUTES_DESCRIPTOR) {
                        val map0 = mutableMapOf()
                        while (hasNextEntry()) {
                            val k0 = key()
                            val v0 = if (nextHasValue()) { deserializeString() } else { deserializeNull(); continue }
                            map0[k0] = v0
                        }
                        map0
                    }
                METRICTYPE_DESCRIPTOR.index -> builder.metricType = deserializeString().let { ServiceLevelIndicatorMetricType.fromValue(it) }
                MONITOREDREQUESTCOUNTMETRIC_DESCRIPTOR.index -> builder.monitoredRequestCountMetric = deserializeMonitoredRequestCountMetricDataQueriesDocument(deserializer)
                OPERATIONNAME_DESCRIPTOR.index -> builder.operationName = deserializeString()
                TOTALREQUESTCOUNTMETRIC_DESCRIPTOR.index -> builder.totalRequestCountMetric =
                    deserializer.deserializeList(TOTALREQUESTCOUNTMETRIC_DESCRIPTOR) {
                        val col0 = mutableListOf()
                        while (hasNextElement()) {
                            val el0 = if (nextHasValue()) { deserializeMetricDataQueryDocument(deserializer) } else { deserializeNull(); continue }
                            col0.add(el0)
                        }
                        col0
                    }
                null -> break@loop
                else -> skipValue()
            }
        }
    }
    builder.correctErrors()
    return builder.build()
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy