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

commonMain.aws.sdk.kotlin.services.proton.serde.TemplateSyncConfigDocumentDeserializer.kt Maven / Gradle / Ivy

The newest version!
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!

package aws.sdk.kotlin.services.proton.serde

import aws.sdk.kotlin.services.proton.model.RepositoryProvider
import aws.sdk.kotlin.services.proton.model.TemplateSyncConfig
import aws.sdk.kotlin.services.proton.model.TemplateType
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 deserializeTemplateSyncConfigDocument(deserializer: Deserializer): TemplateSyncConfig {
    val builder = TemplateSyncConfig.Builder()
    val BRANCH_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("branch"))
    val REPOSITORYNAME_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("repositoryName"))
    val REPOSITORYPROVIDER_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("repositoryProvider"))
    val SUBDIRECTORY_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("subdirectory"))
    val TEMPLATENAME_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("templateName"))
    val TEMPLATETYPE_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("templateType"))
    val OBJ_DESCRIPTOR = SdkObjectDescriptor.build {
        field(BRANCH_DESCRIPTOR)
        field(REPOSITORYNAME_DESCRIPTOR)
        field(REPOSITORYPROVIDER_DESCRIPTOR)
        field(SUBDIRECTORY_DESCRIPTOR)
        field(TEMPLATENAME_DESCRIPTOR)
        field(TEMPLATETYPE_DESCRIPTOR)
    }

    deserializer.deserializeStruct(OBJ_DESCRIPTOR) {
        loop@while (true) {
            when (findNextFieldIndex()) {
                BRANCH_DESCRIPTOR.index -> builder.branch = deserializeString()
                REPOSITORYNAME_DESCRIPTOR.index -> builder.repositoryName = deserializeString()
                REPOSITORYPROVIDER_DESCRIPTOR.index -> builder.repositoryProvider = deserializeString().let { RepositoryProvider.fromValue(it) }
                SUBDIRECTORY_DESCRIPTOR.index -> builder.subdirectory = deserializeString()
                TEMPLATENAME_DESCRIPTOR.index -> builder.templateName = deserializeString()
                TEMPLATETYPE_DESCRIPTOR.index -> builder.templateType = deserializeString().let { TemplateType.fromValue(it) }
                null -> break@loop
                else -> skipValue()
            }
        }
    }
    builder.correctErrors()
    return builder.build()
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy