commonMain.aws.sdk.kotlin.services.deadline.serde.ServiceQuotaExceededExceptionDeserializer.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of deadline-jvm Show documentation
Show all versions of deadline-jvm Show documentation
The AWS SDK for Kotlin client for deadline
// 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()
}
}
}
}