commonMain.aws.sdk.kotlin.services.route53domains.serde.OperationSummaryDocumentDeserializer.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of route53domains-jvm Show documentation
Show all versions of route53domains-jvm Show documentation
The AWS SDK for Kotlin client for Route 53 Domains
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.route53domains.serde
import aws.sdk.kotlin.services.route53domains.model.OperationStatus
import aws.sdk.kotlin.services.route53domains.model.OperationSummary
import aws.sdk.kotlin.services.route53domains.model.OperationType
import aws.sdk.kotlin.services.route53domains.model.StatusFlag
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 deserializeOperationSummaryDocument(deserializer: Deserializer): OperationSummary {
val builder = OperationSummary.Builder()
val DOMAINNAME_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("DomainName"))
val LASTUPDATEDDATE_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Timestamp, JsonSerialName("LastUpdatedDate"))
val MESSAGE_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("Message"))
val OPERATIONID_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("OperationId"))
val STATUS_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Enum, JsonSerialName("Status"))
val STATUSFLAG_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Enum, JsonSerialName("StatusFlag"))
val SUBMITTEDDATE_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Timestamp, JsonSerialName("SubmittedDate"))
val TYPE_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Enum, JsonSerialName("Type"))
val OBJ_DESCRIPTOR = SdkObjectDescriptor.build {
field(DOMAINNAME_DESCRIPTOR)
field(LASTUPDATEDDATE_DESCRIPTOR)
field(MESSAGE_DESCRIPTOR)
field(OPERATIONID_DESCRIPTOR)
field(STATUS_DESCRIPTOR)
field(STATUSFLAG_DESCRIPTOR)
field(SUBMITTEDDATE_DESCRIPTOR)
field(TYPE_DESCRIPTOR)
}
deserializer.deserializeStruct(OBJ_DESCRIPTOR) {
loop@while (true) {
when (findNextFieldIndex()) {
DOMAINNAME_DESCRIPTOR.index -> builder.domainName = deserializeString()
LASTUPDATEDDATE_DESCRIPTOR.index -> builder.lastUpdatedDate = deserializeInstant(TimestampFormat.EPOCH_SECONDS)
MESSAGE_DESCRIPTOR.index -> builder.message = deserializeString()
OPERATIONID_DESCRIPTOR.index -> builder.operationId = deserializeString()
STATUS_DESCRIPTOR.index -> builder.status = deserializeString().let { OperationStatus.fromValue(it) }
STATUSFLAG_DESCRIPTOR.index -> builder.statusFlag = deserializeString().let { StatusFlag.fromValue(it) }
SUBMITTEDDATE_DESCRIPTOR.index -> builder.submittedDate = deserializeInstant(TimestampFormat.EPOCH_SECONDS)
TYPE_DESCRIPTOR.index -> builder.type = deserializeString().let { OperationType.fromValue(it) }
null -> break@loop
else -> skipValue()
}
}
}
builder.correctErrors()
return builder.build()
}