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

commonMain.aws.sdk.kotlin.services.kafka.serde.ClusterOperationInfoDocumentDeserializer.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.ClusterOperationInfo
import aws.sdk.kotlin.services.kafka.model.ClusterOperationStep
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 aws.smithy.kotlin.runtime.time.Instant
import aws.smithy.kotlin.runtime.time.TimestampFormat
import kotlin.collections.mutableListOf

internal fun deserializeClusterOperationInfoDocument(deserializer: Deserializer): ClusterOperationInfo {
    val builder = ClusterOperationInfo.Builder()
    val CLIENTREQUESTID_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("clientRequestId"))
    val CLUSTERARN_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("clusterArn"))
    val CREATIONTIME_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Timestamp, JsonSerialName("creationTime"))
    val ENDTIME_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Timestamp, JsonSerialName("endTime"))
    val ERRORINFO_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Struct, JsonSerialName("errorInfo"))
    val OPERATIONARN_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("operationArn"))
    val OPERATIONSTATE_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("operationState"))
    val OPERATIONSTEPS_DESCRIPTOR = SdkFieldDescriptor(SerialKind.List, JsonSerialName("operationSteps"))
    val OPERATIONTYPE_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("operationType"))
    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(CLIENTREQUESTID_DESCRIPTOR)
        field(CLUSTERARN_DESCRIPTOR)
        field(CREATIONTIME_DESCRIPTOR)
        field(ENDTIME_DESCRIPTOR)
        field(ERRORINFO_DESCRIPTOR)
        field(OPERATIONARN_DESCRIPTOR)
        field(OPERATIONSTATE_DESCRIPTOR)
        field(OPERATIONSTEPS_DESCRIPTOR)
        field(OPERATIONTYPE_DESCRIPTOR)
        field(SOURCECLUSTERINFO_DESCRIPTOR)
        field(TARGETCLUSTERINFO_DESCRIPTOR)
        field(VPCCONNECTIONINFO_DESCRIPTOR)
    }

    deserializer.deserializeStruct(OBJ_DESCRIPTOR) {
        loop@while (true) {
            when (findNextFieldIndex()) {
                CLIENTREQUESTID_DESCRIPTOR.index -> builder.clientRequestId = deserializeString()
                CLUSTERARN_DESCRIPTOR.index -> builder.clusterArn = deserializeString()
                CREATIONTIME_DESCRIPTOR.index -> builder.creationTime = deserializeInstant(TimestampFormat.ISO_8601)
                ENDTIME_DESCRIPTOR.index -> builder.endTime = deserializeInstant(TimestampFormat.ISO_8601)
                ERRORINFO_DESCRIPTOR.index -> builder.errorInfo = deserializeErrorInfoDocument(deserializer)
                OPERATIONARN_DESCRIPTOR.index -> builder.operationArn = deserializeString()
                OPERATIONSTATE_DESCRIPTOR.index -> builder.operationState = deserializeString()
                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
                    }
                OPERATIONTYPE_DESCRIPTOR.index -> builder.operationType = deserializeString()
                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