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

commonMain.aws.sdk.kotlin.services.computeoptimizer.serde.VolumeConfigurationDocumentDeserializer.kt Maven / Gradle / Ivy

There is a newer version: 1.3.76
Show newest version
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!

package aws.sdk.kotlin.services.computeoptimizer.serde

import aws.sdk.kotlin.services.computeoptimizer.model.VolumeConfiguration
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

internal fun deserializeVolumeConfigurationDocument(deserializer: Deserializer): VolumeConfiguration {
    val builder = VolumeConfiguration.Builder()
    val ROOTVOLUME_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Boolean, JsonSerialName("rootVolume"))
    val VOLUMEBASELINEIOPS_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Integer, JsonSerialName("volumeBaselineIOPS"))
    val VOLUMEBASELINETHROUGHPUT_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Integer, JsonSerialName("volumeBaselineThroughput"))
    val VOLUMEBURSTIOPS_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Integer, JsonSerialName("volumeBurstIOPS"))
    val VOLUMEBURSTTHROUGHPUT_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Integer, JsonSerialName("volumeBurstThroughput"))
    val VOLUMESIZE_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Integer, JsonSerialName("volumeSize"))
    val VOLUMETYPE_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("volumeType"))
    val OBJ_DESCRIPTOR = SdkObjectDescriptor.build {
        field(ROOTVOLUME_DESCRIPTOR)
        field(VOLUMEBASELINEIOPS_DESCRIPTOR)
        field(VOLUMEBASELINETHROUGHPUT_DESCRIPTOR)
        field(VOLUMEBURSTIOPS_DESCRIPTOR)
        field(VOLUMEBURSTTHROUGHPUT_DESCRIPTOR)
        field(VOLUMESIZE_DESCRIPTOR)
        field(VOLUMETYPE_DESCRIPTOR)
    }

    deserializer.deserializeStruct(OBJ_DESCRIPTOR) {
        loop@while (true) {
            when (findNextFieldIndex()) {
                ROOTVOLUME_DESCRIPTOR.index -> builder.rootVolume = deserializeBoolean()
                VOLUMEBASELINEIOPS_DESCRIPTOR.index -> builder.volumeBaselineIops = deserializeInt()
                VOLUMEBASELINETHROUGHPUT_DESCRIPTOR.index -> builder.volumeBaselineThroughput = deserializeInt()
                VOLUMEBURSTIOPS_DESCRIPTOR.index -> builder.volumeBurstIops = deserializeInt()
                VOLUMEBURSTTHROUGHPUT_DESCRIPTOR.index -> builder.volumeBurstThroughput = deserializeInt()
                VOLUMESIZE_DESCRIPTOR.index -> builder.volumeSize = deserializeInt()
                VOLUMETYPE_DESCRIPTOR.index -> builder.volumeType = deserializeString()
                null -> break@loop
                else -> skipValue()
            }
        }
    }
    builder.correctErrors()
    return builder.build()
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy