All Downloads are FREE. Search and download functionalities are using the official Maven repository.

commonMain.aws.sdk.kotlin.services.fms.transform.RouteDocumentDeserializer.kt Maven / Gradle / Ivy

// Code generated by smithy-kotlin-codegen. DO NOT EDIT!

package aws.sdk.kotlin.services.fms.transform

import aws.sdk.kotlin.services.fms.model.DestinationType
import aws.sdk.kotlin.services.fms.model.Route
import aws.sdk.kotlin.services.fms.model.TargetType
import aws.smithy.kotlin.runtime.serde.Deserializer
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 fun deserializeRouteDocument(deserializer: Deserializer): Route {
    val builder = Route.Builder()
    val DESTINATION_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("Destination"))
    val DESTINATIONTYPE_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Enum, JsonSerialName("DestinationType"))
    val TARGET_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("Target"))
    val TARGETTYPE_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Enum, JsonSerialName("TargetType"))
    val OBJ_DESCRIPTOR = SdkObjectDescriptor.build {
        field(DESTINATION_DESCRIPTOR)
        field(DESTINATIONTYPE_DESCRIPTOR)
        field(TARGET_DESCRIPTOR)
        field(TARGETTYPE_DESCRIPTOR)
    }

    deserializer.deserializeStruct(OBJ_DESCRIPTOR) {
        loop@while (true) {
            when (findNextFieldIndex()) {
                DESTINATION_DESCRIPTOR.index -> builder.destination = deserializeString()
                DESTINATIONTYPE_DESCRIPTOR.index -> builder.destinationType = deserializeString().let { DestinationType.fromValue(it) }
                TARGET_DESCRIPTOR.index -> builder.target = deserializeString()
                TARGETTYPE_DESCRIPTOR.index -> builder.targetType = deserializeString().let { TargetType.fromValue(it) }
                null -> break@loop
                else -> skipValue()
            }
        }
    }
    return builder.build()
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy