All Downloads are FREE. Search and download functionalities are using the official Maven repository.

commonMain.aws.sdk.kotlin.services.appflow.serde.ExecutionResultDocumentDeserializer.kt Maven / Gradle / Ivy

There is a newer version: 1.3.79
Show newest version
// 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()
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy