commonMain.aws.sdk.kotlin.services.timestreamquery.serde.ScheduledQueryDescriptionDocumentDeserializer.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.ScheduledQueryDescription
import aws.sdk.kotlin.services.timestreamquery.model.ScheduledQueryRunSummary
import aws.sdk.kotlin.services.timestreamquery.model.ScheduledQueryState
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 deserializeScheduledQueryDescriptionDocument(deserializer: Deserializer): ScheduledQueryDescription {
val builder = ScheduledQueryDescription.Builder()
val ARN_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("Arn"))
val CREATIONTIME_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Timestamp, JsonSerialName("CreationTime"))
val ERRORREPORTCONFIGURATION_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Struct, JsonSerialName("ErrorReportConfiguration"))
val KMSKEYID_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("KmsKeyId"))
val LASTRUNSUMMARY_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Struct, JsonSerialName("LastRunSummary"))
val NAME_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("Name"))
val NEXTINVOCATIONTIME_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Timestamp, JsonSerialName("NextInvocationTime"))
val NOTIFICATIONCONFIGURATION_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Struct, JsonSerialName("NotificationConfiguration"))
val PREVIOUSINVOCATIONTIME_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Timestamp, JsonSerialName("PreviousInvocationTime"))
val QUERYSTRING_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("QueryString"))
val RECENTLYFAILEDRUNS_DESCRIPTOR = SdkFieldDescriptor(SerialKind.List, JsonSerialName("RecentlyFailedRuns"))
val SCHEDULECONFIGURATION_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Struct, JsonSerialName("ScheduleConfiguration"))
val SCHEDULEDQUERYEXECUTIONROLEARN_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("ScheduledQueryExecutionRoleArn"))
val STATE_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Enum, JsonSerialName("State"))
val TARGETCONFIGURATION_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Struct, JsonSerialName("TargetConfiguration"))
val OBJ_DESCRIPTOR = SdkObjectDescriptor.build {
field(ARN_DESCRIPTOR)
field(CREATIONTIME_DESCRIPTOR)
field(ERRORREPORTCONFIGURATION_DESCRIPTOR)
field(KMSKEYID_DESCRIPTOR)
field(LASTRUNSUMMARY_DESCRIPTOR)
field(NAME_DESCRIPTOR)
field(NEXTINVOCATIONTIME_DESCRIPTOR)
field(NOTIFICATIONCONFIGURATION_DESCRIPTOR)
field(PREVIOUSINVOCATIONTIME_DESCRIPTOR)
field(QUERYSTRING_DESCRIPTOR)
field(RECENTLYFAILEDRUNS_DESCRIPTOR)
field(SCHEDULECONFIGURATION_DESCRIPTOR)
field(SCHEDULEDQUERYEXECUTIONROLEARN_DESCRIPTOR)
field(STATE_DESCRIPTOR)
field(TARGETCONFIGURATION_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)
ERRORREPORTCONFIGURATION_DESCRIPTOR.index -> builder.errorReportConfiguration = deserializeErrorReportConfigurationDocument(deserializer)
KMSKEYID_DESCRIPTOR.index -> builder.kmsKeyId = deserializeString()
LASTRUNSUMMARY_DESCRIPTOR.index -> builder.lastRunSummary = deserializeScheduledQueryRunSummaryDocument(deserializer)
NAME_DESCRIPTOR.index -> builder.name = deserializeString()
NEXTINVOCATIONTIME_DESCRIPTOR.index -> builder.nextInvocationTime = deserializeInstant(TimestampFormat.EPOCH_SECONDS)
NOTIFICATIONCONFIGURATION_DESCRIPTOR.index -> builder.notificationConfiguration = deserializeNotificationConfigurationDocument(deserializer)
PREVIOUSINVOCATIONTIME_DESCRIPTOR.index -> builder.previousInvocationTime = deserializeInstant(TimestampFormat.EPOCH_SECONDS)
QUERYSTRING_DESCRIPTOR.index -> builder.queryString = deserializeString()
RECENTLYFAILEDRUNS_DESCRIPTOR.index -> builder.recentlyFailedRuns =
deserializer.deserializeList(RECENTLYFAILEDRUNS_DESCRIPTOR) {
val col0 = mutableListOf()
while (hasNextElement()) {
val el0 = if (nextHasValue()) { deserializeScheduledQueryRunSummaryDocument(deserializer) } else { deserializeNull(); continue }
col0.add(el0)
}
col0
}
SCHEDULECONFIGURATION_DESCRIPTOR.index -> builder.scheduleConfiguration = deserializeScheduleConfigurationDocument(deserializer)
SCHEDULEDQUERYEXECUTIONROLEARN_DESCRIPTOR.index -> builder.scheduledQueryExecutionRoleArn = deserializeString()
STATE_DESCRIPTOR.index -> builder.state = deserializeString().let { ScheduledQueryState.fromValue(it) }
TARGETCONFIGURATION_DESCRIPTOR.index -> builder.targetConfiguration = deserializeTargetConfigurationDocument(deserializer)
null -> break@loop
else -> skipValue()
}
}
}
builder.correctErrors()
return builder.build()
}