commonMain.aws.sdk.kotlin.services.ssooidc.serde.InvalidRequestRegionExceptionDeserializer.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ssooidc-jvm Show documentation
Show all versions of ssooidc-jvm Show documentation
The AWS SDK for Kotlin client for SSO OIDC
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.ssooidc.serde
import aws.sdk.kotlin.services.ssooidc.model.InvalidRequestRegionException
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 InvalidRequestRegionExceptionDeserializer: HttpDeserializer.NonStreaming {
override fun deserialize(context: ExecutionContext, call: HttpCall, payload: ByteArray?): InvalidRequestRegionException {
val response = call.response
val builder = InvalidRequestRegionException.Builder()
if (payload != null) {
deserializeInvalidRequestRegionExceptionError(builder, payload)
}
builder.correctErrors()
return builder.build()
}
}
private fun deserializeInvalidRequestRegionExceptionError(builder: InvalidRequestRegionException.Builder, payload: ByteArray) {
val deserializer = JsonDeserializer(payload)
val ENDPOINT_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("endpoint"))
val ERROR_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("error"))
val ERRORDESCRIPTION_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("error_description"))
val REGION_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("region"))
val OBJ_DESCRIPTOR = SdkObjectDescriptor.build {
field(ENDPOINT_DESCRIPTOR)
field(ERROR_DESCRIPTOR)
field(ERRORDESCRIPTION_DESCRIPTOR)
field(REGION_DESCRIPTOR)
}
deserializer.deserializeStruct(OBJ_DESCRIPTOR) {
loop@while (true) {
when (findNextFieldIndex()) {
ENDPOINT_DESCRIPTOR.index -> builder.endpoint = deserializeString()
ERROR_DESCRIPTOR.index -> builder.error = deserializeString()
ERRORDESCRIPTION_DESCRIPTOR.index -> builder.errorDescription = deserializeString()
REGION_DESCRIPTOR.index -> builder.region = deserializeString()
null -> break@loop
else -> skipValue()
}
}
}
}