commonMain.aws.sdk.kotlin.services.bedrockagent.serde.PromptFlowNodeInlineConfigurationDocumentDeserializer.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bedrockagent-jvm Show documentation
Show all versions of bedrockagent-jvm Show documentation
The AWS SDK for Kotlin client for Bedrock Agent
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.bedrockagent.serde
import aws.sdk.kotlin.services.bedrockagent.model.PromptFlowNodeInlineConfiguration
import aws.sdk.kotlin.services.bedrockagent.model.PromptTemplateType
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 deserializePromptFlowNodeInlineConfigurationDocument(deserializer: Deserializer): PromptFlowNodeInlineConfiguration {
val builder = PromptFlowNodeInlineConfiguration.Builder()
val INFERENCECONFIGURATION_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Struct, JsonSerialName("inferenceConfiguration"))
val MODELID_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("modelId"))
val TEMPLATECONFIGURATION_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Struct, JsonSerialName("templateConfiguration"))
val TEMPLATETYPE_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Enum, JsonSerialName("templateType"))
val OBJ_DESCRIPTOR = SdkObjectDescriptor.build {
field(INFERENCECONFIGURATION_DESCRIPTOR)
field(MODELID_DESCRIPTOR)
field(TEMPLATECONFIGURATION_DESCRIPTOR)
field(TEMPLATETYPE_DESCRIPTOR)
}
deserializer.deserializeStruct(OBJ_DESCRIPTOR) {
loop@while (true) {
when (findNextFieldIndex()) {
INFERENCECONFIGURATION_DESCRIPTOR.index -> builder.inferenceConfiguration = deserializePromptInferenceConfigurationDocument(deserializer)
MODELID_DESCRIPTOR.index -> builder.modelId = deserializeString()
TEMPLATECONFIGURATION_DESCRIPTOR.index -> builder.templateConfiguration = deserializePromptTemplateConfigurationDocument(deserializer)
TEMPLATETYPE_DESCRIPTOR.index -> builder.templateType = deserializeString().let { PromptTemplateType.fromValue(it) }
null -> break@loop
else -> skipValue()
}
}
}
builder.correctErrors()
return builder.build()
}