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

commonMain.aws.sdk.kotlin.services.securityhub.serde.AwsEc2VpcDetailsDocumentDeserializer.kt Maven / Gradle / Ivy

There is a newer version: 1.3.35
Show newest version
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!

package aws.sdk.kotlin.services.securityhub.serde

import aws.sdk.kotlin.services.securityhub.model.AwsEc2VpcDetails
import aws.sdk.kotlin.services.securityhub.model.CidrBlockAssociation
import aws.sdk.kotlin.services.securityhub.model.Ipv6CidrBlockAssociation
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 deserializeAwsEc2VpcDetailsDocument(deserializer: Deserializer): AwsEc2VpcDetails {
    val builder = AwsEc2VpcDetails.Builder()
    val CIDRBLOCKASSOCIATIONSET_DESCRIPTOR = SdkFieldDescriptor(SerialKind.List, JsonSerialName("CidrBlockAssociationSet"))
    val DHCPOPTIONSID_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("DhcpOptionsId"))
    val IPV6CIDRBLOCKASSOCIATIONSET_DESCRIPTOR = SdkFieldDescriptor(SerialKind.List, JsonSerialName("Ipv6CidrBlockAssociationSet"))
    val STATE_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("State"))
    val OBJ_DESCRIPTOR = SdkObjectDescriptor.build {
        field(CIDRBLOCKASSOCIATIONSET_DESCRIPTOR)
        field(DHCPOPTIONSID_DESCRIPTOR)
        field(IPV6CIDRBLOCKASSOCIATIONSET_DESCRIPTOR)
        field(STATE_DESCRIPTOR)
    }

    deserializer.deserializeStruct(OBJ_DESCRIPTOR) {
        loop@while (true) {
            when (findNextFieldIndex()) {
                CIDRBLOCKASSOCIATIONSET_DESCRIPTOR.index -> builder.cidrBlockAssociationSet =
                    deserializer.deserializeList(CIDRBLOCKASSOCIATIONSET_DESCRIPTOR) {
                        val col0 = mutableListOf()
                        while (hasNextElement()) {
                            val el0 = if (nextHasValue()) { deserializeCidrBlockAssociationDocument(deserializer) } else { deserializeNull(); continue }
                            col0.add(el0)
                        }
                        col0
                    }
                DHCPOPTIONSID_DESCRIPTOR.index -> builder.dhcpOptionsId = deserializeString()
                IPV6CIDRBLOCKASSOCIATIONSET_DESCRIPTOR.index -> builder.ipv6CidrBlockAssociationSet =
                    deserializer.deserializeList(IPV6CIDRBLOCKASSOCIATIONSET_DESCRIPTOR) {
                        val col0 = mutableListOf()
                        while (hasNextElement()) {
                            val el0 = if (nextHasValue()) { deserializeIpv6CidrBlockAssociationDocument(deserializer) } else { deserializeNull(); continue }
                            col0.add(el0)
                        }
                        col0
                    }
                STATE_DESCRIPTOR.index -> builder.state = deserializeString()
                null -> break@loop
                else -> skipValue()
            }
        }
    }
    builder.correctErrors()
    return builder.build()
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy