commonMain.aws.sdk.kotlin.services.configservice.serde.AggregatedSourceStatusDocumentDeserializer.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of configservice-jvm Show documentation
Show all versions of configservice-jvm Show documentation
The AWS SDK for Kotlin client for Config Service
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.configservice.serde
import aws.sdk.kotlin.services.configservice.model.AggregatedSourceStatus
import aws.sdk.kotlin.services.configservice.model.AggregatedSourceStatusType
import aws.sdk.kotlin.services.configservice.model.AggregatedSourceType
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 deserializeAggregatedSourceStatusDocument(deserializer: Deserializer): AggregatedSourceStatus {
val builder = AggregatedSourceStatus.Builder()
val AWSREGION_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("AwsRegion"))
val LASTERRORCODE_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("LastErrorCode"))
val LASTERRORMESSAGE_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("LastErrorMessage"))
val LASTUPDATESTATUS_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Enum, JsonSerialName("LastUpdateStatus"))
val LASTUPDATETIME_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Timestamp, JsonSerialName("LastUpdateTime"))
val SOURCEID_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("SourceId"))
val SOURCETYPE_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Enum, JsonSerialName("SourceType"))
val OBJ_DESCRIPTOR = SdkObjectDescriptor.build {
field(AWSREGION_DESCRIPTOR)
field(LASTERRORCODE_DESCRIPTOR)
field(LASTERRORMESSAGE_DESCRIPTOR)
field(LASTUPDATESTATUS_DESCRIPTOR)
field(LASTUPDATETIME_DESCRIPTOR)
field(SOURCEID_DESCRIPTOR)
field(SOURCETYPE_DESCRIPTOR)
}
deserializer.deserializeStruct(OBJ_DESCRIPTOR) {
loop@while (true) {
when (findNextFieldIndex()) {
AWSREGION_DESCRIPTOR.index -> builder.awsRegion = deserializeString()
LASTERRORCODE_DESCRIPTOR.index -> builder.lastErrorCode = deserializeString()
LASTERRORMESSAGE_DESCRIPTOR.index -> builder.lastErrorMessage = deserializeString()
LASTUPDATESTATUS_DESCRIPTOR.index -> builder.lastUpdateStatus = deserializeString().let { AggregatedSourceStatusType.fromValue(it) }
LASTUPDATETIME_DESCRIPTOR.index -> builder.lastUpdateTime = deserializeInstant(TimestampFormat.EPOCH_SECONDS)
SOURCEID_DESCRIPTOR.index -> builder.sourceId = deserializeString()
SOURCETYPE_DESCRIPTOR.index -> builder.sourceType = deserializeString().let { AggregatedSourceType.fromValue(it) }
null -> break@loop
else -> skipValue()
}
}
}
builder.correctErrors()
return builder.build()
}