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

commonMain.aws.sdk.kotlin.services.deadline.serde.ServiceQuotaExceededExceptionDeserializer.kt Maven / Gradle / Ivy

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

package aws.sdk.kotlin.services.deadline.serde

import aws.sdk.kotlin.services.deadline.model.ServiceQuotaExceededException
import aws.sdk.kotlin.services.deadline.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
import kotlin.collections.mutableMapOf


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 CONTEXT_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Map, JsonSerialName("context"))
    val MESSAGE_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("message"))
    val QUOTACODE_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("quotaCode"))
    val REASON_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Enum, JsonSerialName("reason"))
    val RESOURCEID_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("resourceId"))
    val RESOURCETYPE_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("resourceType"))
    val SERVICECODE_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("serviceCode"))
    val OBJ_DESCRIPTOR = SdkObjectDescriptor.build {
        field(CONTEXT_DESCRIPTOR)
        field(MESSAGE_DESCRIPTOR)
        field(QUOTACODE_DESCRIPTOR)
        field(REASON_DESCRIPTOR)
        field(RESOURCEID_DESCRIPTOR)
        field(RESOURCETYPE_DESCRIPTOR)
        field(SERVICECODE_DESCRIPTOR)
    }

    deserializer.deserializeStruct(OBJ_DESCRIPTOR) {
        loop@while (true) {
            when (findNextFieldIndex()) {
                CONTEXT_DESCRIPTOR.index -> builder.context =
                    deserializer.deserializeMap(CONTEXT_DESCRIPTOR) {
                        val map0 = mutableMapOf()
                        while (hasNextEntry()) {
                            val k0 = key()
                            val v0 = if (nextHasValue()) { deserializeString() } else { deserializeNull(); continue }
                            map0[k0] = v0
                        }
                        map0
                    }
                MESSAGE_DESCRIPTOR.index -> builder.message = deserializeString()
                QUOTACODE_DESCRIPTOR.index -> builder.quotaCode = deserializeString()
                REASON_DESCRIPTOR.index -> builder.reason = deserializeString().let { ServiceQuotaExceededExceptionReason.fromValue(it) }
                RESOURCEID_DESCRIPTOR.index -> builder.resourceId = deserializeString()
                RESOURCETYPE_DESCRIPTOR.index -> builder.resourceType = deserializeString()
                SERVICECODE_DESCRIPTOR.index -> builder.serviceCode = deserializeString()
                null -> break@loop
                else -> skipValue()
            }
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy