
commonMain.aws.sdk.kotlin.services.elasticloadbalancingv2.serde.CreateTrustStoreOperationDeserializer.kt Maven / Gradle / Ivy
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.elasticloadbalancingv2.serde
import aws.sdk.kotlin.services.elasticloadbalancingv2.model.CreateTrustStoreResponse
import aws.sdk.kotlin.services.elasticloadbalancingv2.model.ElasticLoadBalancingV2Exception
import aws.sdk.kotlin.services.elasticloadbalancingv2.model.TrustStore
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
import aws.smithy.kotlin.runtime.serde.xml.xmlTagReader
internal class CreateTrustStoreOperationDeserializer: HttpDeserializer.NonStreaming {
override fun deserialize(context: ExecutionContext, call: HttpCall, payload: ByteArray?): CreateTrustStoreResponse {
val response = call.response
if (!response.status.isSuccess()) {
throwCreateTrustStoreError(context, call, payload)
}
val builder = CreateTrustStoreResponse.Builder()
if (payload != null) {
deserializeCreateTrustStoreOperationBody(builder, payload)
}
builder.correctErrors()
return builder.build()
}
}
private fun throwCreateTrustStoreError(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 ElasticLoadBalancingV2Exception("Failed to parse response as 'awsQuery' error", ex).also {
setAseErrorMetadata(it, wrappedCall.response, null)
}
}
val ex = when(errorDetails.code) {
"InvalidCaCertificatesBundle" -> InvalidCaCertificatesBundleExceptionDeserializer().deserialize(context, wrappedCall, payload)
"DuplicateTagKeys" -> DuplicateTagKeysExceptionDeserializer().deserialize(context, wrappedCall, payload)
"DuplicateTrustStoreName" -> DuplicateTrustStoreNameExceptionDeserializer().deserialize(context, wrappedCall, payload)
"CaCertificatesBundleNotFound" -> CaCertificatesBundleNotFoundExceptionDeserializer().deserialize(context, wrappedCall, payload)
"TooManyTrustStores" -> TooManyTrustStoresExceptionDeserializer().deserialize(context, wrappedCall, payload)
"TooManyTags" -> TooManyTagsExceptionDeserializer().deserialize(context, wrappedCall, payload)
else -> ElasticLoadBalancingV2Exception(errorDetails.message)
}
setAseErrorMetadata(ex, wrappedResponse, errorDetails)
throw ex
}
private fun deserializeCreateTrustStoreOperationBody(builder: CreateTrustStoreResponse.Builder, payload: ByteArray) {
val root = xmlTagReader(payload)
val unwrapped = unwrapAwsQueryResponse(root, "CreateTrustStore")
loop@while (true) {
val curr = unwrapped.nextTag() ?: break@loop
when (curr.tagName) {
// TrustStores com.amazonaws.elasticloadbalancingv2#CreateTrustStoreOutput$TrustStores
"TrustStores" -> builder.trustStores = deserializeTrustStoresShape(curr)
else -> {}
}
curr.drop()
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy