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

commonMain.aws.sdk.kotlin.services.elasticbeanstalk.serde.AwsQueryUtil.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.smithy.kotlin.runtime.serde.DeserializationException
import aws.smithy.kotlin.runtime.serde.xml.XmlTagReader

internal fun unwrapAwsQueryResponse(root: XmlTagReader, operationName: String): XmlTagReader {
    val responseWrapperName = "${operationName}Response"
    val resultWrapperName = "${operationName}Result"
    if (root.tagName != responseWrapperName) {
        throw DeserializationException("invalid root, expected $responseWrapperName; found `${root.tag}`")
    }
    val resultTag = root.nextTag()
    if (resultTag == null || resultTag.tagName != resultWrapperName) {
        throw DeserializationException("invalid result, expected $resultWrapperName; found `${resultTag?.tag}`")
    }
    return resultTag
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy