commonMain.aws.sdk.kotlin.services.devicefarm.serde.AccountSettingsDocumentDeserializer.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of devicefarm-jvm Show documentation
Show all versions of devicefarm-jvm Show documentation
The AWS SDK for Kotlin client for Device Farm
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.devicefarm.serde
import aws.sdk.kotlin.services.devicefarm.model.AccountSettings
import aws.sdk.kotlin.services.devicefarm.model.DevicePlatform
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.mutableMapOf
internal fun deserializeAccountSettingsDocument(deserializer: Deserializer): AccountSettings {
val builder = AccountSettings.Builder()
val AWSACCOUNTNUMBER_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("awsAccountNumber"))
val DEFAULTJOBTIMEOUTMINUTES_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Integer, JsonSerialName("defaultJobTimeoutMinutes"))
val MAXJOBTIMEOUTMINUTES_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Integer, JsonSerialName("maxJobTimeoutMinutes"))
val MAXSLOTS_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Map, JsonSerialName("maxSlots"))
val SKIPAPPRESIGN_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Boolean, JsonSerialName("skipAppResign"))
val TRIALMINUTES_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Struct, JsonSerialName("trialMinutes"))
val UNMETEREDDEVICES_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Map, JsonSerialName("unmeteredDevices"))
val UNMETEREDREMOTEACCESSDEVICES_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Map, JsonSerialName("unmeteredRemoteAccessDevices"))
val OBJ_DESCRIPTOR = SdkObjectDescriptor.build {
field(AWSACCOUNTNUMBER_DESCRIPTOR)
field(DEFAULTJOBTIMEOUTMINUTES_DESCRIPTOR)
field(MAXJOBTIMEOUTMINUTES_DESCRIPTOR)
field(MAXSLOTS_DESCRIPTOR)
field(SKIPAPPRESIGN_DESCRIPTOR)
field(TRIALMINUTES_DESCRIPTOR)
field(UNMETEREDDEVICES_DESCRIPTOR)
field(UNMETEREDREMOTEACCESSDEVICES_DESCRIPTOR)
}
deserializer.deserializeStruct(OBJ_DESCRIPTOR) {
loop@while (true) {
when (findNextFieldIndex()) {
AWSACCOUNTNUMBER_DESCRIPTOR.index -> builder.awsAccountNumber = deserializeString()
DEFAULTJOBTIMEOUTMINUTES_DESCRIPTOR.index -> builder.defaultJobTimeoutMinutes = deserializeInt()
MAXJOBTIMEOUTMINUTES_DESCRIPTOR.index -> builder.maxJobTimeoutMinutes = deserializeInt()
MAXSLOTS_DESCRIPTOR.index -> builder.maxSlots =
deserializer.deserializeMap(MAXSLOTS_DESCRIPTOR) {
val map0 = mutableMapOf()
while (hasNextEntry()) {
val k0 = key()
val v0 = if (nextHasValue()) { deserializeInt() } else { deserializeNull(); continue }
map0[k0] = v0
}
map0
}
SKIPAPPRESIGN_DESCRIPTOR.index -> builder.skipAppResign = deserializeBoolean()
TRIALMINUTES_DESCRIPTOR.index -> builder.trialMinutes = deserializeTrialMinutesDocument(deserializer)
UNMETEREDDEVICES_DESCRIPTOR.index -> builder.unmeteredDevices =
deserializer.deserializeMap(UNMETEREDDEVICES_DESCRIPTOR) {
val map0 = mutableMapOf()
while (hasNextEntry()) {
val k0 = DevicePlatform.fromValue(key())
val v0 = if (nextHasValue()) { deserializeInt() } else { deserializeNull(); continue }
map0[k0] = v0
}
map0
}
UNMETEREDREMOTEACCESSDEVICES_DESCRIPTOR.index -> builder.unmeteredRemoteAccessDevices =
deserializer.deserializeMap(UNMETEREDREMOTEACCESSDEVICES_DESCRIPTOR) {
val map0 = mutableMapOf()
while (hasNextEntry()) {
val k0 = DevicePlatform.fromValue(key())
val v0 = if (nextHasValue()) { deserializeInt() } else { deserializeNull(); continue }
map0[k0] = v0
}
map0
}
null -> break@loop
else -> skipValue()
}
}
}
builder.correctErrors()
return builder.build()
}