commonMain.aws.sdk.kotlin.services.signer.serde.EncryptionAlgorithmOptionsDocumentDeserializer.kt Maven / Gradle / Ivy
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.signer.serde
import aws.sdk.kotlin.services.signer.model.EncryptionAlgorithm
import aws.sdk.kotlin.services.signer.model.EncryptionAlgorithmOptions
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 deserializeEncryptionAlgorithmOptionsDocument(deserializer: Deserializer): EncryptionAlgorithmOptions {
val builder = EncryptionAlgorithmOptions.Builder()
val ALLOWEDVALUES_DESCRIPTOR = SdkFieldDescriptor(SerialKind.List, JsonSerialName("allowedValues"))
val DEFAULTVALUE_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Enum, JsonSerialName("defaultValue"))
val OBJ_DESCRIPTOR = SdkObjectDescriptor.build {
field(ALLOWEDVALUES_DESCRIPTOR)
field(DEFAULTVALUE_DESCRIPTOR)
}
deserializer.deserializeStruct(OBJ_DESCRIPTOR) {
loop@while (true) {
when (findNextFieldIndex()) {
ALLOWEDVALUES_DESCRIPTOR.index -> builder.allowedValues =
deserializer.deserializeList(ALLOWEDVALUES_DESCRIPTOR) {
val col0 = mutableListOf()
while (hasNextElement()) {
val el0 = if (nextHasValue()) { deserializeString().let { EncryptionAlgorithm.fromValue(it) } } else { deserializeNull(); continue }
col0.add(el0)
}
col0
}
DEFAULTVALUE_DESCRIPTOR.index -> builder.defaultValue = deserializeString().let { EncryptionAlgorithm.fromValue(it) }
null -> break@loop
else -> skipValue()
}
}
}
builder.correctErrors()
return builder.build()
}