commonMain.aws.sdk.kotlin.services.timestreamquery.serde.ScheduledQueryRunSummaryDocumentDeserializer.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of timestreamquery-jvm Show documentation
Show all versions of timestreamquery-jvm Show documentation
The AWS SDK for Kotlin client for Timestream Query
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.timestreamquery.serde
import aws.sdk.kotlin.services.timestreamquery.model.ScheduledQueryRunStatus
import aws.sdk.kotlin.services.timestreamquery.model.ScheduledQueryRunSummary
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 deserializeScheduledQueryRunSummaryDocument(deserializer: Deserializer): ScheduledQueryRunSummary {
val builder = ScheduledQueryRunSummary.Builder()
val ERRORREPORTLOCATION_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Struct, JsonSerialName("ErrorReportLocation"))
val EXECUTIONSTATS_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Struct, JsonSerialName("ExecutionStats"))
val FAILUREREASON_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("FailureReason"))
val INVOCATIONTIME_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Timestamp, JsonSerialName("InvocationTime"))
val RUNSTATUS_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Enum, JsonSerialName("RunStatus"))
val TRIGGERTIME_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Timestamp, JsonSerialName("TriggerTime"))
val OBJ_DESCRIPTOR = SdkObjectDescriptor.build {
field(ERRORREPORTLOCATION_DESCRIPTOR)
field(EXECUTIONSTATS_DESCRIPTOR)
field(FAILUREREASON_DESCRIPTOR)
field(INVOCATIONTIME_DESCRIPTOR)
field(RUNSTATUS_DESCRIPTOR)
field(TRIGGERTIME_DESCRIPTOR)
}
deserializer.deserializeStruct(OBJ_DESCRIPTOR) {
loop@while (true) {
when (findNextFieldIndex()) {
ERRORREPORTLOCATION_DESCRIPTOR.index -> builder.errorReportLocation = deserializeErrorReportLocationDocument(deserializer)
EXECUTIONSTATS_DESCRIPTOR.index -> builder.executionStats = deserializeExecutionStatsDocument(deserializer)
FAILUREREASON_DESCRIPTOR.index -> builder.failureReason = deserializeString()
INVOCATIONTIME_DESCRIPTOR.index -> builder.invocationTime = deserializeInstant(TimestampFormat.EPOCH_SECONDS)
RUNSTATUS_DESCRIPTOR.index -> builder.runStatus = deserializeString().let { ScheduledQueryRunStatus.fromValue(it) }
TRIGGERTIME_DESCRIPTOR.index -> builder.triggerTime = deserializeInstant(TimestampFormat.EPOCH_SECONDS)
null -> break@loop
else -> skipValue()
}
}
}
builder.correctErrors()
return builder.build()
}