commonMain.aws.sdk.kotlin.services.wisdom.serde.UpdateQuickResponseOperationSerializer.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of wisdom-jvm Show documentation
Show all versions of wisdom-jvm Show documentation
The AWS SDK for Kotlin client for Wisdom
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.wisdom.serde
import aws.sdk.kotlin.services.wisdom.model.GroupingConfiguration
import aws.sdk.kotlin.services.wisdom.model.QuickResponseDataProvider
import aws.sdk.kotlin.services.wisdom.model.UpdateQuickResponseRequest
import aws.smithy.kotlin.runtime.http.HttpBody
import aws.smithy.kotlin.runtime.http.HttpMethod
import aws.smithy.kotlin.runtime.http.operation.HttpSerializer
import aws.smithy.kotlin.runtime.http.request.HttpRequestBuilder
import aws.smithy.kotlin.runtime.http.request.url
import aws.smithy.kotlin.runtime.operation.ExecutionContext
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.json.JsonSerializer
import aws.smithy.kotlin.runtime.serde.serializeList
import aws.smithy.kotlin.runtime.serde.serializeMap
import aws.smithy.kotlin.runtime.serde.serializeStruct
import aws.smithy.kotlin.runtime.text.encoding.PercentEncoding
internal class UpdateQuickResponseOperationSerializer: HttpSerializer.NonStreaming {
override fun serialize(context: ExecutionContext, input: UpdateQuickResponseRequest): HttpRequestBuilder {
val builder = HttpRequestBuilder()
builder.method = HttpMethod.POST
builder.url {
requireNotNull(input.knowledgeBaseId) { "knowledgeBaseId is bound to the URI and must not be null" }
requireNotNull(input.quickResponseId) { "quickResponseId is bound to the URI and must not be null" }
path.encodedSegments {
add(PercentEncoding.Path.encode("knowledgeBases"))
add(PercentEncoding.SmithyLabel.encode(input.knowledgeBaseId))
add(PercentEncoding.Path.encode("quickResponses"))
add(PercentEncoding.SmithyLabel.encode(input.quickResponseId))
}
}
val payload = serializeUpdateQuickResponseOperationBody(context, input)
builder.body = HttpBody.fromBytes(payload)
if (builder.body !is HttpBody.Empty) {
builder.headers.setMissing("Content-Type", "application/json")
}
return builder
}
}
private fun serializeUpdateQuickResponseOperationBody(context: ExecutionContext, input: UpdateQuickResponseRequest): ByteArray {
val serializer = JsonSerializer()
val CHANNELS_DESCRIPTOR = SdkFieldDescriptor(SerialKind.List, JsonSerialName("channels"))
val CONTENT_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Struct, JsonSerialName("content"))
val CONTENTTYPE_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("contentType"))
val DESCRIPTION_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("description"))
val GROUPINGCONFIGURATION_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Struct, JsonSerialName("groupingConfiguration"))
val ISACTIVE_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Boolean, JsonSerialName("isActive"))
val LANGUAGE_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("language"))
val NAME_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("name"))
val REMOVEDESCRIPTION_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Boolean, JsonSerialName("removeDescription"))
val REMOVEGROUPINGCONFIGURATION_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Boolean, JsonSerialName("removeGroupingConfiguration"))
val REMOVESHORTCUTKEY_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Boolean, JsonSerialName("removeShortcutKey"))
val SHORTCUTKEY_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("shortcutKey"))
val OBJ_DESCRIPTOR = SdkObjectDescriptor.build {
field(CHANNELS_DESCRIPTOR)
field(CONTENT_DESCRIPTOR)
field(CONTENTTYPE_DESCRIPTOR)
field(DESCRIPTION_DESCRIPTOR)
field(GROUPINGCONFIGURATION_DESCRIPTOR)
field(ISACTIVE_DESCRIPTOR)
field(LANGUAGE_DESCRIPTOR)
field(NAME_DESCRIPTOR)
field(REMOVEDESCRIPTION_DESCRIPTOR)
field(REMOVEGROUPINGCONFIGURATION_DESCRIPTOR)
field(REMOVESHORTCUTKEY_DESCRIPTOR)
field(SHORTCUTKEY_DESCRIPTOR)
}
serializer.serializeStruct(OBJ_DESCRIPTOR) {
if (input.channels != null) {
listField(CHANNELS_DESCRIPTOR) {
for (el0 in input.channels) {
serializeString(el0)
}
}
}
input.content?.let { field(CONTENT_DESCRIPTOR, it, ::serializeQuickResponseDataProviderDocument) }
input.contentType?.let { field(CONTENTTYPE_DESCRIPTOR, it) }
input.description?.let { field(DESCRIPTION_DESCRIPTOR, it) }
input.groupingConfiguration?.let { field(GROUPINGCONFIGURATION_DESCRIPTOR, it, ::serializeGroupingConfigurationDocument) }
input.isActive?.let { field(ISACTIVE_DESCRIPTOR, it) }
input.language?.let { field(LANGUAGE_DESCRIPTOR, it) }
input.name?.let { field(NAME_DESCRIPTOR, it) }
input.removeDescription?.let { field(REMOVEDESCRIPTION_DESCRIPTOR, it) }
input.removeGroupingConfiguration?.let { field(REMOVEGROUPINGCONFIGURATION_DESCRIPTOR, it) }
input.removeShortcutKey?.let { field(REMOVESHORTCUTKEY_DESCRIPTOR, it) }
input.shortcutKey?.let { field(SHORTCUTKEY_DESCRIPTOR, it) }
}
return serializer.toByteArray()
}