commonMain.aws.sdk.kotlin.services.athena.serde.CapacityReservationDocumentDeserializer.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of athena-jvm Show documentation
Show all versions of athena-jvm Show documentation
The AWS SDK for Kotlin client for Athena
The newest version!
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.athena.serde
import aws.sdk.kotlin.services.athena.model.CapacityReservation
import aws.sdk.kotlin.services.athena.model.CapacityReservationStatus
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 deserializeCapacityReservationDocument(deserializer: Deserializer): CapacityReservation {
val builder = CapacityReservation.Builder()
val ALLOCATEDDPUS_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Integer, JsonSerialName("AllocatedDpus"))
val CREATIONTIME_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Timestamp, JsonSerialName("CreationTime"))
val LASTALLOCATION_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Struct, JsonSerialName("LastAllocation"))
val LASTSUCCESSFULALLOCATIONTIME_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Timestamp, JsonSerialName("LastSuccessfulAllocationTime"))
val NAME_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("Name"))
val STATUS_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Enum, JsonSerialName("Status"))
val TARGETDPUS_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Integer, JsonSerialName("TargetDpus"))
val OBJ_DESCRIPTOR = SdkObjectDescriptor.build {
field(ALLOCATEDDPUS_DESCRIPTOR)
field(CREATIONTIME_DESCRIPTOR)
field(LASTALLOCATION_DESCRIPTOR)
field(LASTSUCCESSFULALLOCATIONTIME_DESCRIPTOR)
field(NAME_DESCRIPTOR)
field(STATUS_DESCRIPTOR)
field(TARGETDPUS_DESCRIPTOR)
}
deserializer.deserializeStruct(OBJ_DESCRIPTOR) {
loop@while (true) {
when (findNextFieldIndex()) {
ALLOCATEDDPUS_DESCRIPTOR.index -> builder.allocatedDpus = deserializeInt()
CREATIONTIME_DESCRIPTOR.index -> builder.creationTime = deserializeInstant(TimestampFormat.EPOCH_SECONDS)
LASTALLOCATION_DESCRIPTOR.index -> builder.lastAllocation = deserializeCapacityAllocationDocument(deserializer)
LASTSUCCESSFULALLOCATIONTIME_DESCRIPTOR.index -> builder.lastSuccessfulAllocationTime = deserializeInstant(TimestampFormat.EPOCH_SECONDS)
NAME_DESCRIPTOR.index -> builder.name = deserializeString()
STATUS_DESCRIPTOR.index -> builder.status = deserializeString().let { CapacityReservationStatus.fromValue(it) }
TARGETDPUS_DESCRIPTOR.index -> builder.targetDpus = deserializeInt()
null -> break@loop
else -> skipValue()
}
}
}
builder.correctErrors()
return builder.build()
}