commonMain.aws.sdk.kotlin.services.fms.transform.AccountScopeDocumentDeserializer.kt Maven / Gradle / Ivy
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.fms.transform
import aws.sdk.kotlin.services.fms.model.AccountScope
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 kotlin.collections.mutableListOf
internal fun deserializeAccountScopeDocument(deserializer: Deserializer): AccountScope {
val builder = AccountScope.Builder()
val ACCOUNTS_DESCRIPTOR = SdkFieldDescriptor(SerialKind.List, JsonSerialName("Accounts"))
val ALLACCOUNTSENABLED_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Boolean, JsonSerialName("AllAccountsEnabled"))
val EXCLUDESPECIFIEDACCOUNTS_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Boolean, JsonSerialName("ExcludeSpecifiedAccounts"))
val OBJ_DESCRIPTOR = SdkObjectDescriptor.build {
field(ACCOUNTS_DESCRIPTOR)
field(ALLACCOUNTSENABLED_DESCRIPTOR)
field(EXCLUDESPECIFIEDACCOUNTS_DESCRIPTOR)
}
deserializer.deserializeStruct(OBJ_DESCRIPTOR) {
loop@while (true) {
when (findNextFieldIndex()) {
ACCOUNTS_DESCRIPTOR.index -> builder.accounts =
deserializer.deserializeList(ACCOUNTS_DESCRIPTOR) {
val col0 = mutableListOf()
while (hasNextElement()) {
val el0 = if (nextHasValue()) { deserializeString() } else { deserializeNull(); continue }
col0.add(el0)
}
col0
}
ALLACCOUNTSENABLED_DESCRIPTOR.index -> builder.allAccountsEnabled = deserializeBoolean()
EXCLUDESPECIFIEDACCOUNTS_DESCRIPTOR.index -> builder.excludeSpecifiedAccounts = deserializeBoolean()
null -> break@loop
else -> skipValue()
}
}
}
return builder.build()
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy