commonMain.aws.sdk.kotlin.services.backup.serde.RecoveryPointCreatorDocumentDeserializer.kt Maven / Gradle / Ivy
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.backup.serde
import aws.sdk.kotlin.services.backup.model.RecoveryPointCreator
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
internal fun deserializeRecoveryPointCreatorDocument(deserializer: Deserializer): RecoveryPointCreator {
val builder = RecoveryPointCreator.Builder()
val BACKUPPLANARN_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("BackupPlanArn"))
val BACKUPPLANID_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("BackupPlanId"))
val BACKUPPLANVERSION_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("BackupPlanVersion"))
val BACKUPRULEID_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("BackupRuleId"))
val OBJ_DESCRIPTOR = SdkObjectDescriptor.build {
field(BACKUPPLANARN_DESCRIPTOR)
field(BACKUPPLANID_DESCRIPTOR)
field(BACKUPPLANVERSION_DESCRIPTOR)
field(BACKUPRULEID_DESCRIPTOR)
}
deserializer.deserializeStruct(OBJ_DESCRIPTOR) {
loop@while (true) {
when (findNextFieldIndex()) {
BACKUPPLANARN_DESCRIPTOR.index -> builder.backupPlanArn = deserializeString()
BACKUPPLANID_DESCRIPTOR.index -> builder.backupPlanId = deserializeString()
BACKUPPLANVERSION_DESCRIPTOR.index -> builder.backupPlanVersion = deserializeString()
BACKUPRULEID_DESCRIPTOR.index -> builder.backupRuleId = deserializeString()
null -> break@loop
else -> skipValue()
}
}
}
builder.correctErrors()
return builder.build()
}