commonMain.aws.sdk.kotlin.services.timestreamwrite.serde.TableDocumentDeserializer.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of timestreamwrite-jvm Show documentation
Show all versions of timestreamwrite-jvm Show documentation
The AWS SDK for Kotlin client for Timestream Write
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.timestreamwrite.serde
import aws.sdk.kotlin.services.timestreamwrite.model.Table
import aws.sdk.kotlin.services.timestreamwrite.model.TableStatus
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 deserializeTableDocument(deserializer: Deserializer): Table {
val builder = Table.Builder()
val ARN_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("Arn"))
val CREATIONTIME_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Timestamp, JsonSerialName("CreationTime"))
val DATABASENAME_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("DatabaseName"))
val LASTUPDATEDTIME_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Timestamp, JsonSerialName("LastUpdatedTime"))
val MAGNETICSTOREWRITEPROPERTIES_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Struct, JsonSerialName("MagneticStoreWriteProperties"))
val RETENTIONPROPERTIES_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Struct, JsonSerialName("RetentionProperties"))
val SCHEMA_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Struct, JsonSerialName("Schema"))
val TABLENAME_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("TableName"))
val TABLESTATUS_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Enum, JsonSerialName("TableStatus"))
val OBJ_DESCRIPTOR = SdkObjectDescriptor.build {
field(ARN_DESCRIPTOR)
field(CREATIONTIME_DESCRIPTOR)
field(DATABASENAME_DESCRIPTOR)
field(LASTUPDATEDTIME_DESCRIPTOR)
field(MAGNETICSTOREWRITEPROPERTIES_DESCRIPTOR)
field(RETENTIONPROPERTIES_DESCRIPTOR)
field(SCHEMA_DESCRIPTOR)
field(TABLENAME_DESCRIPTOR)
field(TABLESTATUS_DESCRIPTOR)
}
deserializer.deserializeStruct(OBJ_DESCRIPTOR) {
loop@while (true) {
when (findNextFieldIndex()) {
ARN_DESCRIPTOR.index -> builder.arn = deserializeString()
CREATIONTIME_DESCRIPTOR.index -> builder.creationTime = deserializeInstant(TimestampFormat.EPOCH_SECONDS)
DATABASENAME_DESCRIPTOR.index -> builder.databaseName = deserializeString()
LASTUPDATEDTIME_DESCRIPTOR.index -> builder.lastUpdatedTime = deserializeInstant(TimestampFormat.EPOCH_SECONDS)
MAGNETICSTOREWRITEPROPERTIES_DESCRIPTOR.index -> builder.magneticStoreWriteProperties = deserializeMagneticStoreWritePropertiesDocument(deserializer)
RETENTIONPROPERTIES_DESCRIPTOR.index -> builder.retentionProperties = deserializeRetentionPropertiesDocument(deserializer)
SCHEMA_DESCRIPTOR.index -> builder.schema = deserializeSchemaDocument(deserializer)
TABLENAME_DESCRIPTOR.index -> builder.tableName = deserializeString()
TABLESTATUS_DESCRIPTOR.index -> builder.tableStatus = deserializeString().let { TableStatus.fromValue(it) }
null -> break@loop
else -> skipValue()
}
}
}
builder.correctErrors()
return builder.build()
}