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

commonMain.aws.sdk.kotlin.services.proton.serde.ServiceSyncConfigDocumentDeserializer.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.ServiceSyncConfig
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 deserializeServiceSyncConfigDocument(deserializer: Deserializer): ServiceSyncConfig {
    val builder = ServiceSyncConfig.Builder()
    val BRANCH_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("branch"))
    val FILEPATH_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("filePath"))
    val REPOSITORYNAME_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("repositoryName"))
    val REPOSITORYPROVIDER_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("repositoryProvider"))
    val SERVICENAME_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("serviceName"))
    val OBJ_DESCRIPTOR = SdkObjectDescriptor.build {
        field(BRANCH_DESCRIPTOR)
        field(FILEPATH_DESCRIPTOR)
        field(REPOSITORYNAME_DESCRIPTOR)
        field(REPOSITORYPROVIDER_DESCRIPTOR)
        field(SERVICENAME_DESCRIPTOR)
    }

    deserializer.deserializeStruct(OBJ_DESCRIPTOR) {
        loop@while (true) {
            when (findNextFieldIndex()) {
                BRANCH_DESCRIPTOR.index -> builder.branch = deserializeString()
                FILEPATH_DESCRIPTOR.index -> builder.filePath = deserializeString()
                REPOSITORYNAME_DESCRIPTOR.index -> builder.repositoryName = deserializeString()
                REPOSITORYPROVIDER_DESCRIPTOR.index -> builder.repositoryProvider = deserializeString().let { RepositoryProvider.fromValue(it) }
                SERVICENAME_DESCRIPTOR.index -> builder.serviceName = deserializeString()
                null -> break@loop
                else -> skipValue()
            }
        }
    }
    builder.correctErrors()
    return builder.build()
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy