commonMain.aws.sdk.kotlin.services.neptune.serde.GlobalClusterDocumentDeserializer.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of neptune-jvm Show documentation
Show all versions of neptune-jvm Show documentation
The AWS SDK for Kotlin client for Neptune
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.neptune.serde
import aws.sdk.kotlin.services.neptune.model.GlobalCluster
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 deserializeGlobalClusterDocument(reader: XmlTagReader): GlobalCluster {
val builder = GlobalCluster.Builder()
loop@while (true) {
val curr = reader.nextTag() ?: break@loop
when (curr.tagName) {
// GlobalClusterIdentifier com.amazonaws.neptune#GlobalCluster$GlobalClusterIdentifier
"GlobalClusterIdentifier" -> builder.globalClusterIdentifier = curr.tryData()
.getOrDeserializeErr { "expected (string: `com.amazonaws.neptune#GlobalClusterIdentifier`)" }
// GlobalClusterResourceId com.amazonaws.neptune#GlobalCluster$GlobalClusterResourceId
"GlobalClusterResourceId" -> builder.globalClusterResourceId = curr.tryData()
.getOrDeserializeErr { "expected (string: `com.amazonaws.neptune#String`)" }
// GlobalClusterArn com.amazonaws.neptune#GlobalCluster$GlobalClusterArn
"GlobalClusterArn" -> builder.globalClusterArn = curr.tryData()
.getOrDeserializeErr { "expected (string: `com.amazonaws.neptune#String`)" }
// Status com.amazonaws.neptune#GlobalCluster$Status
"Status" -> builder.status = curr.tryData()
.getOrDeserializeErr { "expected (string: `com.amazonaws.neptune#String`)" }
// Engine com.amazonaws.neptune#GlobalCluster$Engine
"Engine" -> builder.engine = curr.tryData()
.getOrDeserializeErr { "expected (string: `com.amazonaws.neptune#String`)" }
// EngineVersion com.amazonaws.neptune#GlobalCluster$EngineVersion
"EngineVersion" -> builder.engineVersion = curr.tryData()
.getOrDeserializeErr { "expected (string: `com.amazonaws.neptune#String`)" }
// StorageEncrypted com.amazonaws.neptune#GlobalCluster$StorageEncrypted
"StorageEncrypted" -> builder.storageEncrypted = curr.tryData()
.parseBoolean()
.getOrDeserializeErr { "expected (boolean: `com.amazonaws.neptune#BooleanOptional`)" }
// DeletionProtection com.amazonaws.neptune#GlobalCluster$DeletionProtection
"DeletionProtection" -> builder.deletionProtection = curr.tryData()
.parseBoolean()
.getOrDeserializeErr { "expected (boolean: `com.amazonaws.neptune#BooleanOptional`)" }
// GlobalClusterMembers com.amazonaws.neptune#GlobalCluster$GlobalClusterMembers
"GlobalClusterMembers" -> builder.globalClusterMembers = deserializeGlobalClusterMemberListShape(curr)
else -> {}
}
curr.drop()
}
builder.correctErrors()
return builder.build()
}