commonMain.aws.sdk.kotlin.services.appflow.serde.ExecutionResultDocumentDeserializer.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of appflow-jvm Show documentation
Show all versions of appflow-jvm Show documentation
The AWS SDK for Kotlin client for Appflow
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.appflow.serde
import aws.sdk.kotlin.services.appflow.model.ExecutionResult
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 deserializeExecutionResultDocument(deserializer: Deserializer): ExecutionResult {
val builder = ExecutionResult.Builder()
val BYTESPROCESSED_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Long, JsonSerialName("bytesProcessed"))
val BYTESWRITTEN_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Long, JsonSerialName("bytesWritten"))
val ERRORINFO_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Struct, JsonSerialName("errorInfo"))
val MAXPAGESIZE_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Long, JsonSerialName("maxPageSize"))
val NUMPARALLELPROCESSES_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Long, JsonSerialName("numParallelProcesses"))
val RECORDSPROCESSED_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Long, JsonSerialName("recordsProcessed"))
val OBJ_DESCRIPTOR = SdkObjectDescriptor.build {
field(BYTESPROCESSED_DESCRIPTOR)
field(BYTESWRITTEN_DESCRIPTOR)
field(ERRORINFO_DESCRIPTOR)
field(MAXPAGESIZE_DESCRIPTOR)
field(NUMPARALLELPROCESSES_DESCRIPTOR)
field(RECORDSPROCESSED_DESCRIPTOR)
}
deserializer.deserializeStruct(OBJ_DESCRIPTOR) {
loop@while (true) {
when (findNextFieldIndex()) {
BYTESPROCESSED_DESCRIPTOR.index -> builder.bytesProcessed = deserializeLong()
BYTESWRITTEN_DESCRIPTOR.index -> builder.bytesWritten = deserializeLong()
ERRORINFO_DESCRIPTOR.index -> builder.errorInfo = deserializeErrorInfoDocument(deserializer)
MAXPAGESIZE_DESCRIPTOR.index -> builder.maxPageSize = deserializeLong()
NUMPARALLELPROCESSES_DESCRIPTOR.index -> builder.numParallelProcesses = deserializeLong()
RECORDSPROCESSED_DESCRIPTOR.index -> builder.recordsProcessed = deserializeLong()
null -> break@loop
else -> skipValue()
}
}
}
builder.correctErrors()
return builder.build()
}