commonMain.aws.sdk.kotlin.services.devopsguru.serde.CloudWatchMetricsDetailDocumentDeserializer.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of devopsguru-jvm Show documentation
Show all versions of devopsguru-jvm Show documentation
The AWS SDK for Kotlin client for DevOps Guru
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.devopsguru.serde
import aws.sdk.kotlin.services.devopsguru.model.CloudWatchMetricsDetail
import aws.sdk.kotlin.services.devopsguru.model.CloudWatchMetricsDimension
import aws.sdk.kotlin.services.devopsguru.model.CloudWatchMetricsStat
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
internal fun deserializeCloudWatchMetricsDetailDocument(deserializer: Deserializer): CloudWatchMetricsDetail {
val builder = CloudWatchMetricsDetail.Builder()
val DIMENSIONS_DESCRIPTOR = SdkFieldDescriptor(SerialKind.List, JsonSerialName("Dimensions"))
val METRICDATASUMMARY_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Struct, JsonSerialName("MetricDataSummary"))
val METRICNAME_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("MetricName"))
val NAMESPACE_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("Namespace"))
val PERIOD_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Integer, JsonSerialName("Period"))
val STAT_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Enum, JsonSerialName("Stat"))
val UNIT_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("Unit"))
val OBJ_DESCRIPTOR = SdkObjectDescriptor.build {
field(DIMENSIONS_DESCRIPTOR)
field(METRICDATASUMMARY_DESCRIPTOR)
field(METRICNAME_DESCRIPTOR)
field(NAMESPACE_DESCRIPTOR)
field(PERIOD_DESCRIPTOR)
field(STAT_DESCRIPTOR)
field(UNIT_DESCRIPTOR)
}
deserializer.deserializeStruct(OBJ_DESCRIPTOR) {
loop@while (true) {
when (findNextFieldIndex()) {
DIMENSIONS_DESCRIPTOR.index -> builder.dimensions =
deserializer.deserializeList(DIMENSIONS_DESCRIPTOR) {
val col0 = mutableListOf()
while (hasNextElement()) {
val el0 = if (nextHasValue()) { deserializeCloudWatchMetricsDimensionDocument(deserializer) } else { deserializeNull(); continue }
col0.add(el0)
}
col0
}
METRICDATASUMMARY_DESCRIPTOR.index -> builder.metricDataSummary = deserializeCloudWatchMetricsDataSummaryDocument(deserializer)
METRICNAME_DESCRIPTOR.index -> builder.metricName = deserializeString()
NAMESPACE_DESCRIPTOR.index -> builder.namespace = deserializeString()
PERIOD_DESCRIPTOR.index -> builder.period = deserializeInt()
STAT_DESCRIPTOR.index -> builder.stat = deserializeString().let { CloudWatchMetricsStat.fromValue(it) }
UNIT_DESCRIPTOR.index -> builder.unit = deserializeString()
null -> break@loop
else -> skipValue()
}
}
}
builder.correctErrors()
return builder.build()
}