commonMain.aws.sdk.kotlin.services.autoscaling.serde.BlockDeviceMappingDocumentDeserializer.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of autoscaling-jvm Show documentation
Show all versions of autoscaling-jvm Show documentation
The AWS SDK for Kotlin client for Auto Scaling
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.autoscaling.serde
import aws.sdk.kotlin.services.autoscaling.model.BlockDeviceMapping
import aws.smithy.kotlin.runtime.serde.getOrDeserializeErr
import aws.smithy.kotlin.runtime.serde.parseBoolean
import aws.smithy.kotlin.runtime.serde.xml.XmlTagReader
import aws.smithy.kotlin.runtime.serde.xml.tryData
internal fun deserializeBlockDeviceMappingDocument(reader: XmlTagReader): BlockDeviceMapping {
val builder = BlockDeviceMapping.Builder()
loop@while (true) {
val curr = reader.nextTag() ?: break@loop
when (curr.tagName) {
// VirtualName com.amazonaws.autoscaling#BlockDeviceMapping$VirtualName
"VirtualName" -> builder.virtualName = curr.tryData()
.getOrDeserializeErr { "expected (string: `com.amazonaws.autoscaling#XmlStringMaxLen255`)" }
// DeviceName com.amazonaws.autoscaling#BlockDeviceMapping$DeviceName
"DeviceName" -> builder.deviceName = curr.tryData()
.getOrDeserializeErr { "expected (string: `com.amazonaws.autoscaling#XmlStringMaxLen255`)" }
// Ebs com.amazonaws.autoscaling#BlockDeviceMapping$Ebs
"Ebs" -> builder.ebs = deserializeEbsDocument(curr)
// NoDevice com.amazonaws.autoscaling#BlockDeviceMapping$NoDevice
"NoDevice" -> builder.noDevice = curr.tryData()
.parseBoolean()
.getOrDeserializeErr { "expected (boolean: `com.amazonaws.autoscaling#NoDevice`)" }
else -> {}
}
curr.drop()
}
builder.correctErrors()
return builder.build()
}