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

commonMain.aws.sdk.kotlin.services.sagemakergeospatial.serde.PropertiesDocumentDeserializer.kt Maven / Gradle / Ivy

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

package aws.sdk.kotlin.services.sagemakergeospatial.serde

import aws.sdk.kotlin.services.sagemakergeospatial.model.Properties
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 deserializePropertiesDocument(deserializer: Deserializer): Properties {
    val builder = Properties.Builder()
    val EOCLOUDCOVER_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Float, JsonSerialName("EoCloudCover"))
    val LANDSATCLOUDCOVERLAND_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Float, JsonSerialName("LandsatCloudCoverLand"))
    val PLATFORM_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("Platform"))
    val VIEWOFFNADIR_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Float, JsonSerialName("ViewOffNadir"))
    val VIEWSUNAZIMUTH_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Float, JsonSerialName("ViewSunAzimuth"))
    val VIEWSUNELEVATION_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Float, JsonSerialName("ViewSunElevation"))
    val OBJ_DESCRIPTOR = SdkObjectDescriptor.build {
        field(EOCLOUDCOVER_DESCRIPTOR)
        field(LANDSATCLOUDCOVERLAND_DESCRIPTOR)
        field(PLATFORM_DESCRIPTOR)
        field(VIEWOFFNADIR_DESCRIPTOR)
        field(VIEWSUNAZIMUTH_DESCRIPTOR)
        field(VIEWSUNELEVATION_DESCRIPTOR)
    }

    deserializer.deserializeStruct(OBJ_DESCRIPTOR) {
        loop@while (true) {
            when (findNextFieldIndex()) {
                EOCLOUDCOVER_DESCRIPTOR.index -> builder.eoCloudCover = deserializeFloat()
                LANDSATCLOUDCOVERLAND_DESCRIPTOR.index -> builder.landsatCloudCoverLand = deserializeFloat()
                PLATFORM_DESCRIPTOR.index -> builder.platform = deserializeString()
                VIEWOFFNADIR_DESCRIPTOR.index -> builder.viewOffNadir = deserializeFloat()
                VIEWSUNAZIMUTH_DESCRIPTOR.index -> builder.viewSunAzimuth = deserializeFloat()
                VIEWSUNELEVATION_DESCRIPTOR.index -> builder.viewSunElevation = deserializeFloat()
                null -> break@loop
                else -> skipValue()
            }
        }
    }
    builder.correctErrors()
    return builder.build()
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy