All Downloads are FREE. Search and download functionalities are using the official Maven repository.

commonMain.aws.sdk.kotlin.services.route53.serde.HostedZoneDocumentDeserializer.kt Maven / Gradle / Ivy

The newest version!
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!

package aws.sdk.kotlin.services.route53.serde

import aws.sdk.kotlin.services.route53.model.HostedZone
import aws.smithy.kotlin.runtime.serde.getOrDeserializeErr
import aws.smithy.kotlin.runtime.serde.parseLong
import aws.smithy.kotlin.runtime.serde.xml.XmlTagReader
import aws.smithy.kotlin.runtime.serde.xml.tryData

internal fun deserializeHostedZoneDocument(reader: XmlTagReader): HostedZone {
    val builder = HostedZone.Builder()

    loop@while (true) {
        val curr = reader.nextTag() ?: break@loop
        when (curr.tagName) {
            // Id com.amazonaws.route53#HostedZone$Id
            "Id" -> builder.id = curr.tryData()
                .getOrDeserializeErr { "expected (string: `com.amazonaws.route53#ResourceId`)" }
            // Name com.amazonaws.route53#HostedZone$Name
            "Name" -> builder.name = curr.tryData()
                .getOrDeserializeErr { "expected (string: `com.amazonaws.route53#DNSName`)" }
            // CallerReference com.amazonaws.route53#HostedZone$CallerReference
            "CallerReference" -> builder.callerReference = curr.tryData()
                .getOrDeserializeErr { "expected (string: `com.amazonaws.route53#Nonce`)" }
            // Config com.amazonaws.route53#HostedZone$Config
            "Config" -> builder.config = deserializeHostedZoneConfigDocument(curr)
            // ResourceRecordSetCount com.amazonaws.route53#HostedZone$ResourceRecordSetCount
            "ResourceRecordSetCount" -> builder.resourceRecordSetCount = curr.tryData()
                .parseLong()
                .getOrDeserializeErr { "expected (long: `com.amazonaws.route53#HostedZoneRRSetCount`)" }
            // LinkedService com.amazonaws.route53#HostedZone$LinkedService
            "LinkedService" -> builder.linkedService = deserializeLinkedServiceDocument(curr)
            else -> {}
        }
        curr.drop()
    }
    builder.correctErrors()
    return builder.build()
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy