commonMain.aws.sdk.kotlin.services.devopsguru.serde.AnomalousLogGroupDocumentDeserializer.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.AnomalousLogGroup
import aws.sdk.kotlin.services.devopsguru.model.LogAnomalyShowcase
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 deserializeAnomalousLogGroupDocument(deserializer: Deserializer): AnomalousLogGroup {
val builder = AnomalousLogGroup.Builder()
val IMPACTENDTIME_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Timestamp, JsonSerialName("ImpactEndTime"))
val IMPACTSTARTTIME_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Timestamp, JsonSerialName("ImpactStartTime"))
val LOGANOMALYSHOWCASES_DESCRIPTOR = SdkFieldDescriptor(SerialKind.List, JsonSerialName("LogAnomalyShowcases"))
val LOGGROUPNAME_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("LogGroupName"))
val NUMBEROFLOGLINESSCANNED_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Integer, JsonSerialName("NumberOfLogLinesScanned"))
val OBJ_DESCRIPTOR = SdkObjectDescriptor.build {
field(IMPACTENDTIME_DESCRIPTOR)
field(IMPACTSTARTTIME_DESCRIPTOR)
field(LOGANOMALYSHOWCASES_DESCRIPTOR)
field(LOGGROUPNAME_DESCRIPTOR)
field(NUMBEROFLOGLINESSCANNED_DESCRIPTOR)
}
deserializer.deserializeStruct(OBJ_DESCRIPTOR) {
loop@while (true) {
when (findNextFieldIndex()) {
IMPACTENDTIME_DESCRIPTOR.index -> builder.impactEndTime = deserializeInstant(TimestampFormat.EPOCH_SECONDS)
IMPACTSTARTTIME_DESCRIPTOR.index -> builder.impactStartTime = deserializeInstant(TimestampFormat.EPOCH_SECONDS)
LOGANOMALYSHOWCASES_DESCRIPTOR.index -> builder.logAnomalyShowcases =
deserializer.deserializeList(LOGANOMALYSHOWCASES_DESCRIPTOR) {
val col0 = mutableListOf()
while (hasNextElement()) {
val el0 = if (nextHasValue()) { deserializeLogAnomalyShowcaseDocument(deserializer) } else { deserializeNull(); continue }
col0.add(el0)
}
col0
}
LOGGROUPNAME_DESCRIPTOR.index -> builder.logGroupName = deserializeString()
NUMBEROFLOGLINESSCANNED_DESCRIPTOR.index -> builder.numberOfLogLinesScanned = deserializeInt()
null -> break@loop
else -> skipValue()
}
}
}
builder.correctErrors()
return builder.build()
}