commonMain.aws.sdk.kotlin.services.autoscaling.serde.ResourceInUseFaultDeserializer.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of autoscaling-jvm Show documentation
Show all versions of autoscaling-jvm Show documentation
The AWS SDK for Kotlin client for Auto Scaling
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.autoscaling.serde
import aws.sdk.kotlin.services.autoscaling.model.ResourceInUseFault
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 ResourceInUseFaultDeserializer: HttpDeserializer.NonStreaming {
override fun deserialize(context: ExecutionContext, call: HttpCall, payload: ByteArray?): ResourceInUseFault {
val response = call.response
val builder = ResourceInUseFault.Builder()
if (payload != null) {
deserializeResourceInUseFaultError(builder, payload)
}
builder.correctErrors()
return builder.build()
}
}
internal fun deserializeResourceInUseFaultError(builder: ResourceInUseFault.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.autoscaling#ResourceInUseFault$message
"message" -> builder.message = curr.tryData()
.getOrDeserializeErr { "expected (string: `com.amazonaws.autoscaling#XmlStringMaxLen255`)" }
else -> {}
}
curr.drop()
}
}