
commonMain.aws.sdk.kotlin.services.cloudfront.serde.CreateKeyGroupOperationDeserializer.kt Maven / Gradle / Ivy
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.cloudfront.serde
import aws.sdk.kotlin.services.cloudfront.model.CloudFrontException
import aws.sdk.kotlin.services.cloudfront.model.CreateKeyGroupResponse
import aws.sdk.kotlin.services.cloudfront.model.KeyGroup
import aws.smithy.kotlin.runtime.awsprotocol.setAseErrorMetadata
import aws.smithy.kotlin.runtime.awsprotocol.withPayload
import aws.smithy.kotlin.runtime.awsprotocol.xml.parseRestXmlErrorResponseNoSuspend
import aws.smithy.kotlin.runtime.http.HttpCall
import aws.smithy.kotlin.runtime.http.isSuccess
import aws.smithy.kotlin.runtime.http.operation.HttpDeserializer
import aws.smithy.kotlin.runtime.operation.ExecutionContext
internal class CreateKeyGroupOperationDeserializer: HttpDeserializer.NonStreaming {
override fun deserialize(context: ExecutionContext, call: HttpCall, payload: ByteArray?): CreateKeyGroupResponse {
val response = call.response
if (!response.status.isSuccess()) {
throwCreateKeyGroupError(context, call, payload)
}
val builder = CreateKeyGroupResponse.Builder()
builder.eTag = response.headers["ETag"]
builder.location = response.headers["Location"]
if (payload != null) {
builder.keyGroup = deserializeKeyGroupPayload(payload)
}
builder.correctErrors()
return builder.build()
}
}
private fun throwCreateKeyGroupError(context: ExecutionContext, call: HttpCall, payload: ByteArray?): kotlin.Nothing {
val wrappedResponse = call.response.withPayload(payload)
val wrappedCall = call.copy(response = wrappedResponse)
val errorDetails = try {
checkNotNull(payload){ "unable to parse error from empty response" }
parseRestXmlErrorResponseNoSuspend(payload)
} catch (ex: Exception) {
throw CloudFrontException("Failed to parse response as 'restXml' error", ex).also {
setAseErrorMetadata(it, wrappedCall.response, null)
}
}
val ex = when(errorDetails.code) {
"KeyGroupAlreadyExists" -> KeyGroupAlreadyExistsDeserializer().deserialize(context, wrappedCall, payload)
"TooManyKeyGroups" -> TooManyKeyGroupsDeserializer().deserialize(context, wrappedCall, payload)
"TooManyPublicKeysInKeyGroup" -> TooManyPublicKeysInKeyGroupDeserializer().deserialize(context, wrappedCall, payload)
"InvalidArgument" -> InvalidArgumentDeserializer().deserialize(context, wrappedCall, payload)
else -> CloudFrontException(errorDetails.message)
}
setAseErrorMetadata(ex, wrappedResponse, errorDetails)
throw ex
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy