commonMain.aws.sdk.kotlin.services.codedeploy.serde.LambdaFunctionInfoDocumentDeserializer.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of codedeploy-jvm Show documentation
Show all versions of codedeploy-jvm Show documentation
The AWS SDK for Kotlin client for CodeDeploy
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.codedeploy.serde
import aws.sdk.kotlin.services.codedeploy.model.LambdaFunctionInfo
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
internal fun deserializeLambdaFunctionInfoDocument(deserializer: Deserializer): LambdaFunctionInfo {
val builder = LambdaFunctionInfo.Builder()
val CURRENTVERSION_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("currentVersion"))
val FUNCTIONALIAS_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("functionAlias"))
val FUNCTIONNAME_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("functionName"))
val TARGETVERSION_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("targetVersion"))
val TARGETVERSIONWEIGHT_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Double, JsonSerialName("targetVersionWeight"))
val OBJ_DESCRIPTOR = SdkObjectDescriptor.build {
field(CURRENTVERSION_DESCRIPTOR)
field(FUNCTIONALIAS_DESCRIPTOR)
field(FUNCTIONNAME_DESCRIPTOR)
field(TARGETVERSION_DESCRIPTOR)
field(TARGETVERSIONWEIGHT_DESCRIPTOR)
}
deserializer.deserializeStruct(OBJ_DESCRIPTOR) {
loop@while (true) {
when (findNextFieldIndex()) {
CURRENTVERSION_DESCRIPTOR.index -> builder.currentVersion = deserializeString()
FUNCTIONALIAS_DESCRIPTOR.index -> builder.functionAlias = deserializeString()
FUNCTIONNAME_DESCRIPTOR.index -> builder.functionName = deserializeString()
TARGETVERSION_DESCRIPTOR.index -> builder.targetVersion = deserializeString()
TARGETVERSIONWEIGHT_DESCRIPTOR.index -> builder.targetVersionWeight = deserializeDouble()
null -> break@loop
else -> skipValue()
}
}
}
builder.correctErrors()
return builder.build()
}