commonMain.aws.sdk.kotlin.services.applicationdiscoveryservice.serde.NeighborConnectionDetailDocumentDeserializer.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of applicationdiscoveryservice-jvm Show documentation
Show all versions of applicationdiscoveryservice-jvm Show documentation
The AWS SDK for Kotlin client for Application Discovery Service
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.applicationdiscoveryservice.serde
import aws.sdk.kotlin.services.applicationdiscoveryservice.model.NeighborConnectionDetail
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 deserializeNeighborConnectionDetailDocument(deserializer: Deserializer): NeighborConnectionDetail {
val builder = NeighborConnectionDetail.Builder()
val CONNECTIONSCOUNT_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Long, JsonSerialName("connectionsCount"))
val DESTINATIONPORT_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Integer, JsonSerialName("destinationPort"))
val DESTINATIONSERVERID_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("destinationServerId"))
val SOURCESERVERID_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("sourceServerId"))
val TRANSPORTPROTOCOL_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("transportProtocol"))
val OBJ_DESCRIPTOR = SdkObjectDescriptor.build {
field(CONNECTIONSCOUNT_DESCRIPTOR)
field(DESTINATIONPORT_DESCRIPTOR)
field(DESTINATIONSERVERID_DESCRIPTOR)
field(SOURCESERVERID_DESCRIPTOR)
field(TRANSPORTPROTOCOL_DESCRIPTOR)
}
deserializer.deserializeStruct(OBJ_DESCRIPTOR) {
loop@while (true) {
when (findNextFieldIndex()) {
CONNECTIONSCOUNT_DESCRIPTOR.index -> builder.connectionsCount = deserializeLong()
DESTINATIONPORT_DESCRIPTOR.index -> builder.destinationPort = deserializeInt()
DESTINATIONSERVERID_DESCRIPTOR.index -> builder.destinationServerId = deserializeString()
SOURCESERVERID_DESCRIPTOR.index -> builder.sourceServerId = deserializeString()
TRANSPORTPROTOCOL_DESCRIPTOR.index -> builder.transportProtocol = deserializeString()
null -> break@loop
else -> skipValue()
}
}
}
builder.correctErrors()
return builder.build()
}