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

commonMain.aws.sdk.kotlin.services.appstream.serde.AppBlockDocumentDeserializer.kt Maven / Gradle / Ivy

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

package aws.sdk.kotlin.services.appstream.serde

import aws.sdk.kotlin.services.appstream.model.AppBlock
import aws.sdk.kotlin.services.appstream.model.AppBlockState
import aws.sdk.kotlin.services.appstream.model.ErrorDetails
import aws.sdk.kotlin.services.appstream.model.PackagingType
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 aws.smithy.kotlin.runtime.time.Instant
import aws.smithy.kotlin.runtime.time.TimestampFormat
import kotlin.collections.mutableListOf

internal fun deserializeAppBlockDocument(deserializer: Deserializer): AppBlock {
    val builder = AppBlock.Builder()
    val APPBLOCKERRORS_DESCRIPTOR = SdkFieldDescriptor(SerialKind.List, JsonSerialName("AppBlockErrors"))
    val ARN_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("Arn"))
    val CREATEDTIME_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Timestamp, JsonSerialName("CreatedTime"))
    val DESCRIPTION_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("Description"))
    val DISPLAYNAME_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("DisplayName"))
    val NAME_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("Name"))
    val PACKAGINGTYPE_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Enum, JsonSerialName("PackagingType"))
    val POSTSETUPSCRIPTDETAILS_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Struct, JsonSerialName("PostSetupScriptDetails"))
    val SETUPSCRIPTDETAILS_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Struct, JsonSerialName("SetupScriptDetails"))
    val SOURCES3LOCATION_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Struct, JsonSerialName("SourceS3Location"))
    val STATE_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Enum, JsonSerialName("State"))
    val OBJ_DESCRIPTOR = SdkObjectDescriptor.build {
        field(APPBLOCKERRORS_DESCRIPTOR)
        field(ARN_DESCRIPTOR)
        field(CREATEDTIME_DESCRIPTOR)
        field(DESCRIPTION_DESCRIPTOR)
        field(DISPLAYNAME_DESCRIPTOR)
        field(NAME_DESCRIPTOR)
        field(PACKAGINGTYPE_DESCRIPTOR)
        field(POSTSETUPSCRIPTDETAILS_DESCRIPTOR)
        field(SETUPSCRIPTDETAILS_DESCRIPTOR)
        field(SOURCES3LOCATION_DESCRIPTOR)
        field(STATE_DESCRIPTOR)
    }

    deserializer.deserializeStruct(OBJ_DESCRIPTOR) {
        loop@while (true) {
            when (findNextFieldIndex()) {
                APPBLOCKERRORS_DESCRIPTOR.index -> builder.appBlockErrors =
                    deserializer.deserializeList(APPBLOCKERRORS_DESCRIPTOR) {
                        val col0 = mutableListOf()
                        while (hasNextElement()) {
                            val el0 = if (nextHasValue()) { deserializeErrorDetailsDocument(deserializer) } else { deserializeNull(); continue }
                            col0.add(el0)
                        }
                        col0
                    }
                ARN_DESCRIPTOR.index -> builder.arn = deserializeString()
                CREATEDTIME_DESCRIPTOR.index -> builder.createdTime = deserializeInstant(TimestampFormat.EPOCH_SECONDS)
                DESCRIPTION_DESCRIPTOR.index -> builder.description = deserializeString()
                DISPLAYNAME_DESCRIPTOR.index -> builder.displayName = deserializeString()
                NAME_DESCRIPTOR.index -> builder.name = deserializeString()
                PACKAGINGTYPE_DESCRIPTOR.index -> builder.packagingType = deserializeString().let { PackagingType.fromValue(it) }
                POSTSETUPSCRIPTDETAILS_DESCRIPTOR.index -> builder.postSetupScriptDetails = deserializeScriptDetailsDocument(deserializer)
                SETUPSCRIPTDETAILS_DESCRIPTOR.index -> builder.setupScriptDetails = deserializeScriptDetailsDocument(deserializer)
                SOURCES3LOCATION_DESCRIPTOR.index -> builder.sourceS3Location = deserializeS3LocationDocument(deserializer)
                STATE_DESCRIPTOR.index -> builder.state = deserializeString().let { AppBlockState.fromValue(it) }
                null -> break@loop
                else -> skipValue()
            }
        }
    }
    builder.correctErrors()
    return builder.build()
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy