commonMain.aws.sdk.kotlin.services.codedeploy.serde.GenericRevisionInfoDocumentDeserializer.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of codedeploy-jvm Show documentation
Show all versions of codedeploy-jvm Show documentation
The AWS SDK for Kotlin client for CodeDeploy
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.codedeploy.serde
import aws.sdk.kotlin.services.codedeploy.model.GenericRevisionInfo
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 deserializeGenericRevisionInfoDocument(deserializer: Deserializer): GenericRevisionInfo {
val builder = GenericRevisionInfo.Builder()
val DEPLOYMENTGROUPS_DESCRIPTOR = SdkFieldDescriptor(SerialKind.List, JsonSerialName("deploymentGroups"))
val DESCRIPTION_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("description"))
val FIRSTUSEDTIME_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Timestamp, JsonSerialName("firstUsedTime"))
val LASTUSEDTIME_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Timestamp, JsonSerialName("lastUsedTime"))
val REGISTERTIME_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Timestamp, JsonSerialName("registerTime"))
val OBJ_DESCRIPTOR = SdkObjectDescriptor.build {
field(DEPLOYMENTGROUPS_DESCRIPTOR)
field(DESCRIPTION_DESCRIPTOR)
field(FIRSTUSEDTIME_DESCRIPTOR)
field(LASTUSEDTIME_DESCRIPTOR)
field(REGISTERTIME_DESCRIPTOR)
}
deserializer.deserializeStruct(OBJ_DESCRIPTOR) {
loop@while (true) {
when (findNextFieldIndex()) {
DEPLOYMENTGROUPS_DESCRIPTOR.index -> builder.deploymentGroups =
deserializer.deserializeList(DEPLOYMENTGROUPS_DESCRIPTOR) {
val col0 = mutableListOf()
while (hasNextElement()) {
val el0 = if (nextHasValue()) { deserializeString() } else { deserializeNull(); continue }
col0.add(el0)
}
col0
}
DESCRIPTION_DESCRIPTOR.index -> builder.description = deserializeString()
FIRSTUSEDTIME_DESCRIPTOR.index -> builder.firstUsedTime = deserializeInstant(TimestampFormat.EPOCH_SECONDS)
LASTUSEDTIME_DESCRIPTOR.index -> builder.lastUsedTime = deserializeInstant(TimestampFormat.EPOCH_SECONDS)
REGISTERTIME_DESCRIPTOR.index -> builder.registerTime = deserializeInstant(TimestampFormat.EPOCH_SECONDS)
null -> break@loop
else -> skipValue()
}
}
}
builder.correctErrors()
return builder.build()
}