commonMain.aws.sdk.kotlin.services.ebs.serde.ServiceQuotaExceededExceptionDeserializer.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ebs-jvm Show documentation
Show all versions of ebs-jvm Show documentation
The AWS Kotlin client for EBS
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.ebs.serde
import aws.sdk.kotlin.services.ebs.model.ServiceQuotaExceededException
import aws.sdk.kotlin.services.ebs.model.ServiceQuotaExceededExceptionReason
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.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 class ServiceQuotaExceededExceptionDeserializer: HttpDeserializer.NonStreaming {
override fun deserialize(context: ExecutionContext, call: HttpCall, payload: ByteArray?): ServiceQuotaExceededException {
val response = call.response
val builder = ServiceQuotaExceededException.Builder()
if (payload != null) {
deserializeServiceQuotaExceededExceptionError(builder, payload)
}
builder.correctErrors()
return builder.build()
}
}
private fun deserializeServiceQuotaExceededExceptionError(builder: ServiceQuotaExceededException.Builder, payload: ByteArray) {
val deserializer = JsonDeserializer(payload)
val MESSAGE_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("Message"))
val REASON_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Enum, JsonSerialName("Reason"))
val OBJ_DESCRIPTOR = SdkObjectDescriptor.build {
field(MESSAGE_DESCRIPTOR)
field(REASON_DESCRIPTOR)
}
deserializer.deserializeStruct(OBJ_DESCRIPTOR) {
loop@while (true) {
when (findNextFieldIndex()) {
MESSAGE_DESCRIPTOR.index -> builder.message = deserializeString()
REASON_DESCRIPTOR.index -> builder.reason = deserializeString().let { ServiceQuotaExceededExceptionReason.fromValue(it) }
null -> break@loop
else -> skipValue()
}
}
}
}