
commonMain.aws.sdk.kotlin.services.wellarchitected.transform.PillarDifferenceDocumentDeserializer.kt Maven / Gradle / Ivy
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.wellarchitected.transform
import aws.sdk.kotlin.services.wellarchitected.model.DifferenceStatus
import aws.sdk.kotlin.services.wellarchitected.model.PillarDifference
import aws.sdk.kotlin.services.wellarchitected.model.QuestionDifference
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 deserializePillarDifferenceDocument(deserializer: Deserializer): PillarDifference {
val builder = PillarDifference.Builder()
val DIFFERENCESTATUS_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Enum, JsonSerialName("DifferenceStatus"))
val PILLARID_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("PillarId"))
val PILLARNAME_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("PillarName"))
val QUESTIONDIFFERENCES_DESCRIPTOR = SdkFieldDescriptor(SerialKind.List, JsonSerialName("QuestionDifferences"))
val OBJ_DESCRIPTOR = SdkObjectDescriptor.build {
field(DIFFERENCESTATUS_DESCRIPTOR)
field(PILLARID_DESCRIPTOR)
field(PILLARNAME_DESCRIPTOR)
field(QUESTIONDIFFERENCES_DESCRIPTOR)
}
deserializer.deserializeStruct(OBJ_DESCRIPTOR) {
loop@while (true) {
when (findNextFieldIndex()) {
DIFFERENCESTATUS_DESCRIPTOR.index -> builder.differenceStatus = deserializeString().let { DifferenceStatus.fromValue(it) }
PILLARID_DESCRIPTOR.index -> builder.pillarId = deserializeString()
PILLARNAME_DESCRIPTOR.index -> builder.pillarName = deserializeString()
QUESTIONDIFFERENCES_DESCRIPTOR.index -> builder.questionDifferences =
deserializer.deserializeList(QUESTIONDIFFERENCES_DESCRIPTOR) {
val col0 = mutableListOf()
while (hasNextElement()) {
val el0 = if (nextHasValue()) { deserializeQuestionDifferenceDocument(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