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

commonMain.aws.sdk.kotlin.services.kafka.serde.ClusterOperationV2ProvisionedDocumentDeserializer.kt Maven / Gradle / Ivy

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

package aws.sdk.kotlin.services.kafka.serde

import aws.sdk.kotlin.services.kafka.model.ClusterOperationStep
import aws.sdk.kotlin.services.kafka.model.ClusterOperationV2Provisioned
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
import kotlin.collections.mutableListOf

internal fun deserializeClusterOperationV2ProvisionedDocument(deserializer: Deserializer): ClusterOperationV2Provisioned {
    val builder = ClusterOperationV2Provisioned.Builder()
    val OPERATIONSTEPS_DESCRIPTOR = SdkFieldDescriptor(SerialKind.List, JsonSerialName("operationSteps"))
    val SOURCECLUSTERINFO_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Struct, JsonSerialName("sourceClusterInfo"))
    val TARGETCLUSTERINFO_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Struct, JsonSerialName("targetClusterInfo"))
    val VPCCONNECTIONINFO_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Struct, JsonSerialName("vpcConnectionInfo"))
    val OBJ_DESCRIPTOR = SdkObjectDescriptor.build {
        field(OPERATIONSTEPS_DESCRIPTOR)
        field(SOURCECLUSTERINFO_DESCRIPTOR)
        field(TARGETCLUSTERINFO_DESCRIPTOR)
        field(VPCCONNECTIONINFO_DESCRIPTOR)
    }

    deserializer.deserializeStruct(OBJ_DESCRIPTOR) {
        loop@while (true) {
            when (findNextFieldIndex()) {
                OPERATIONSTEPS_DESCRIPTOR.index -> builder.operationSteps =
                    deserializer.deserializeList(OPERATIONSTEPS_DESCRIPTOR) {
                        val col0 = mutableListOf()
                        while (hasNextElement()) {
                            val el0 = if (nextHasValue()) { deserializeClusterOperationStepDocument(deserializer) } else { deserializeNull(); continue }
                            col0.add(el0)
                        }
                        col0
                    }
                SOURCECLUSTERINFO_DESCRIPTOR.index -> builder.sourceClusterInfo = deserializeMutableClusterInfoDocument(deserializer)
                TARGETCLUSTERINFO_DESCRIPTOR.index -> builder.targetClusterInfo = deserializeMutableClusterInfoDocument(deserializer)
                VPCCONNECTIONINFO_DESCRIPTOR.index -> builder.vpcConnectionInfo = deserializeVpcConnectionInfoDocument(deserializer)
                null -> break@loop
                else -> skipValue()
            }
        }
    }
    builder.correctErrors()
    return builder.build()
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy