commonMain.aws.sdk.kotlin.services.wafv2.serde.DescribeManagedRuleGroupOperationDeserializer.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of wafv2-jvm Show documentation
Show all versions of wafv2-jvm Show documentation
The AWS Kotlin client for WAFV2
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.wafv2.serde
import aws.sdk.kotlin.services.wafv2.model.DescribeManagedRuleGroupResponse
import aws.sdk.kotlin.services.wafv2.model.LabelSummary
import aws.sdk.kotlin.services.wafv2.model.RuleSummary
import aws.sdk.kotlin.services.wafv2.model.Wafv2Exception
import aws.smithy.kotlin.runtime.awsprotocol.json.RestJsonErrorDeserializer
import aws.smithy.kotlin.runtime.awsprotocol.setAseErrorMetadata
import aws.smithy.kotlin.runtime.awsprotocol.withPayload
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.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.mutableListOf
internal class DescribeManagedRuleGroupOperationDeserializer: HttpDeserializer.NonStreaming {
override fun deserialize(context: ExecutionContext, call: HttpCall, payload: ByteArray?): DescribeManagedRuleGroupResponse {
val response = call.response
if (!response.status.isSuccess()) {
throwDescribeManagedRuleGroupError(context, call, payload)
}
val builder = DescribeManagedRuleGroupResponse.Builder()
if (payload != null) {
deserializeDescribeManagedRuleGroupOperationBody(builder, payload)
}
builder.correctErrors()
return builder.build()
}
}
private fun throwDescribeManagedRuleGroupError(context: ExecutionContext, call: HttpCall, payload: ByteArray?): kotlin.Nothing {
val wrappedResponse = call.response.withPayload(payload)
val wrappedCall = call.copy(response = wrappedResponse)
val errorDetails = try {
RestJsonErrorDeserializer.deserialize(call.response.headers, payload)
} catch (ex: Exception) {
throw Wafv2Exception("Failed to parse response as 'awsJson1_1' error", ex).also {
setAseErrorMetadata(it, wrappedCall.response, null)
}
}
val ex = when(errorDetails.code) {
"WAFExpiredManagedRuleGroupVersionException" -> WafExpiredManagedRuleGroupVersionExceptionDeserializer().deserialize(context, wrappedCall, payload)
"WAFInvalidParameterException" -> WafInvalidParameterExceptionDeserializer().deserialize(context, wrappedCall, payload)
"WAFNonexistentItemException" -> WafNonexistentItemExceptionDeserializer().deserialize(context, wrappedCall, payload)
"WAFInvalidResourceException" -> WafInvalidResourceExceptionDeserializer().deserialize(context, wrappedCall, payload)
"WAFInternalErrorException" -> WafInternalErrorExceptionDeserializer().deserialize(context, wrappedCall, payload)
"WAFInvalidOperationException" -> WafInvalidOperationExceptionDeserializer().deserialize(context, wrappedCall, payload)
else -> Wafv2Exception(errorDetails.message)
}
setAseErrorMetadata(ex, wrappedResponse, errorDetails)
throw ex
}
private fun deserializeDescribeManagedRuleGroupOperationBody(builder: DescribeManagedRuleGroupResponse.Builder, payload: ByteArray) {
val deserializer = JsonDeserializer(payload)
val AVAILABLELABELS_DESCRIPTOR = SdkFieldDescriptor(SerialKind.List, JsonSerialName("AvailableLabels"))
val CAPACITY_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Long, JsonSerialName("Capacity"))
val CONSUMEDLABELS_DESCRIPTOR = SdkFieldDescriptor(SerialKind.List, JsonSerialName("ConsumedLabels"))
val LABELNAMESPACE_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("LabelNamespace"))
val RULES_DESCRIPTOR = SdkFieldDescriptor(SerialKind.List, JsonSerialName("Rules"))
val SNSTOPICARN_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("SnsTopicArn"))
val VERSIONNAME_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("VersionName"))
val OBJ_DESCRIPTOR = SdkObjectDescriptor.build {
field(AVAILABLELABELS_DESCRIPTOR)
field(CAPACITY_DESCRIPTOR)
field(CONSUMEDLABELS_DESCRIPTOR)
field(LABELNAMESPACE_DESCRIPTOR)
field(RULES_DESCRIPTOR)
field(SNSTOPICARN_DESCRIPTOR)
field(VERSIONNAME_DESCRIPTOR)
}
deserializer.deserializeStruct(OBJ_DESCRIPTOR) {
loop@while (true) {
when (findNextFieldIndex()) {
AVAILABLELABELS_DESCRIPTOR.index -> builder.availableLabels =
deserializer.deserializeList(AVAILABLELABELS_DESCRIPTOR) {
val col0 = mutableListOf()
while (hasNextElement()) {
val el0 = if (nextHasValue()) { deserializeLabelSummaryDocument(deserializer) } else { deserializeNull(); continue }
col0.add(el0)
}
col0
}
CAPACITY_DESCRIPTOR.index -> builder.capacity = deserializeLong()
CONSUMEDLABELS_DESCRIPTOR.index -> builder.consumedLabels =
deserializer.deserializeList(CONSUMEDLABELS_DESCRIPTOR) {
val col0 = mutableListOf()
while (hasNextElement()) {
val el0 = if (nextHasValue()) { deserializeLabelSummaryDocument(deserializer) } else { deserializeNull(); continue }
col0.add(el0)
}
col0
}
LABELNAMESPACE_DESCRIPTOR.index -> builder.labelNamespace = deserializeString()
RULES_DESCRIPTOR.index -> builder.rules =
deserializer.deserializeList(RULES_DESCRIPTOR) {
val col0 = mutableListOf()
while (hasNextElement()) {
val el0 = if (nextHasValue()) { deserializeRuleSummaryDocument(deserializer) } else { deserializeNull(); continue }
col0.add(el0)
}
col0
}
SNSTOPICARN_DESCRIPTOR.index -> builder.snsTopicArn = deserializeString()
VERSIONNAME_DESCRIPTOR.index -> builder.versionName = deserializeString()
null -> break@loop
else -> skipValue()
}
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy