commonMain.aws.sdk.kotlin.services.appflow.serde.ConnectorRuntimeSettingDocumentDeserializer.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of appflow-jvm Show documentation
Show all versions of appflow-jvm Show documentation
The AWS SDK for Kotlin client for Appflow
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.appflow.serde
import aws.sdk.kotlin.services.appflow.model.ConnectorRuntimeSetting
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 kotlin.collections.mutableListOf
internal fun deserializeConnectorRuntimeSettingDocument(deserializer: Deserializer): ConnectorRuntimeSetting {
val builder = ConnectorRuntimeSetting.Builder()
val CONNECTORSUPPLIEDVALUEOPTIONS_DESCRIPTOR = SdkFieldDescriptor(SerialKind.List, JsonSerialName("connectorSuppliedValueOptions"))
val DATATYPE_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("dataType"))
val DESCRIPTION_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("description"))
val ISREQUIRED_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Boolean, JsonSerialName("isRequired"))
val KEY_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("key"))
val LABEL_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("label"))
val SCOPE_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("scope"))
val OBJ_DESCRIPTOR = SdkObjectDescriptor.build {
field(CONNECTORSUPPLIEDVALUEOPTIONS_DESCRIPTOR)
field(DATATYPE_DESCRIPTOR)
field(DESCRIPTION_DESCRIPTOR)
field(ISREQUIRED_DESCRIPTOR)
field(KEY_DESCRIPTOR)
field(LABEL_DESCRIPTOR)
field(SCOPE_DESCRIPTOR)
}
deserializer.deserializeStruct(OBJ_DESCRIPTOR) {
loop@while (true) {
when (findNextFieldIndex()) {
CONNECTORSUPPLIEDVALUEOPTIONS_DESCRIPTOR.index -> builder.connectorSuppliedValueOptions =
deserializer.deserializeList(CONNECTORSUPPLIEDVALUEOPTIONS_DESCRIPTOR) {
val col0 = mutableListOf()
while (hasNextElement()) {
val el0 = if (nextHasValue()) { deserializeString() } else { deserializeNull(); continue }
col0.add(el0)
}
col0
}
DATATYPE_DESCRIPTOR.index -> builder.dataType = deserializeString()
DESCRIPTION_DESCRIPTOR.index -> builder.description = deserializeString()
ISREQUIRED_DESCRIPTOR.index -> builder.isRequired = deserializeBoolean()
KEY_DESCRIPTOR.index -> builder.key = deserializeString()
LABEL_DESCRIPTOR.index -> builder.label = deserializeString()
SCOPE_DESCRIPTOR.index -> builder.scope = deserializeString()
null -> break@loop
else -> skipValue()
}
}
}
builder.correctErrors()
return builder.build()
}