commonMain.aws.sdk.kotlin.services.medicalimaging.serde.DatastoreSummaryDocumentDeserializer.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of medicalimaging-jvm Show documentation
Show all versions of medicalimaging-jvm Show documentation
The AWS SDK for Kotlin client for Medical Imaging
The newest version!
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.medicalimaging.serde
import aws.sdk.kotlin.services.medicalimaging.model.DatastoreStatus
import aws.sdk.kotlin.services.medicalimaging.model.DatastoreSummary
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
internal fun deserializeDatastoreSummaryDocument(deserializer: Deserializer): DatastoreSummary {
val builder = DatastoreSummary.Builder()
val CREATEDAT_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Timestamp, JsonSerialName("createdAt"))
val DATASTOREARN_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("datastoreArn"))
val DATASTOREID_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("datastoreId"))
val DATASTORENAME_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("datastoreName"))
val DATASTORESTATUS_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Enum, JsonSerialName("datastoreStatus"))
val UPDATEDAT_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Timestamp, JsonSerialName("updatedAt"))
val OBJ_DESCRIPTOR = SdkObjectDescriptor.build {
field(CREATEDAT_DESCRIPTOR)
field(DATASTOREARN_DESCRIPTOR)
field(DATASTOREID_DESCRIPTOR)
field(DATASTORENAME_DESCRIPTOR)
field(DATASTORESTATUS_DESCRIPTOR)
field(UPDATEDAT_DESCRIPTOR)
}
deserializer.deserializeStruct(OBJ_DESCRIPTOR) {
loop@while (true) {
when (findNextFieldIndex()) {
CREATEDAT_DESCRIPTOR.index -> builder.createdAt = deserializeInstant(TimestampFormat.EPOCH_SECONDS)
DATASTOREARN_DESCRIPTOR.index -> builder.datastoreArn = deserializeString()
DATASTOREID_DESCRIPTOR.index -> builder.datastoreId = deserializeString()
DATASTORENAME_DESCRIPTOR.index -> builder.datastoreName = deserializeString()
DATASTORESTATUS_DESCRIPTOR.index -> builder.datastoreStatus = deserializeString().let { DatastoreStatus.fromValue(it) }
UPDATEDAT_DESCRIPTOR.index -> builder.updatedAt = deserializeInstant(TimestampFormat.EPOCH_SECONDS)
null -> break@loop
else -> skipValue()
}
}
}
builder.correctErrors()
return builder.build()
}