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

commonMain.aws.sdk.kotlin.services.elasticbeanstalk.serde.TooManyTagsExceptionDeserializer.kt Maven / Gradle / Ivy

There is a newer version: 1.3.31
Show newest version
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!

package aws.sdk.kotlin.services.elasticbeanstalk.serde

import aws.sdk.kotlin.services.elasticbeanstalk.model.TooManyTagsException
import aws.smithy.kotlin.runtime.http.HttpCall
import aws.smithy.kotlin.runtime.http.operation.HttpDeserializer
import aws.smithy.kotlin.runtime.http.response.HttpResponse
import aws.smithy.kotlin.runtime.operation.ExecutionContext
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.deserializeStruct
import aws.smithy.kotlin.runtime.serde.getOrDeserializeErr
import aws.smithy.kotlin.runtime.serde.xml.tryData
import aws.smithy.kotlin.runtime.serde.xml.xmlTagReader


internal class TooManyTagsExceptionDeserializer: HttpDeserializer.NonStreaming {

    override fun deserialize(context: ExecutionContext, call: HttpCall, payload: ByteArray?): TooManyTagsException {
        val response = call.response
        val builder = TooManyTagsException.Builder()

        if (payload != null) {
            deserializeTooManyTagsExceptionError(builder, payload)
        }
        builder.correctErrors()
        return builder.build()
    }
}

internal fun deserializeTooManyTagsExceptionError(builder: TooManyTagsException.Builder, payload: ByteArray) {
    val root = xmlTagReader(payload)
    val errReader = unwrapWrappedXmlErrorResponse(root)

    loop@while (true) {
        val curr = errReader.nextTag() ?: break@loop
        when (curr.tagName) {
            // message com.amazonaws.elasticbeanstalk#TooManyTagsException$message
            "message" -> builder.message = curr.tryData()
                .getOrDeserializeErr { "expected (string: `com.amazonaws.elasticbeanstalk#ExceptionMessage`)" }
            else -> {}
        }
        curr.drop()
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy