commonMain.aws.sdk.kotlin.services.datazone.serde.CreateGlossaryTermOperationSerializer.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of datazone-jvm Show documentation
Show all versions of datazone-jvm Show documentation
The AWS SDK for Kotlin client for DataZone
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.datazone.serde
import aws.sdk.kotlin.services.datazone.model.CreateGlossaryTermRequest
import aws.sdk.kotlin.services.datazone.model.GlossaryTermStatus
import aws.sdk.kotlin.services.datazone.model.TermRelations
import aws.smithy.kotlin.runtime.client.idempotencyTokenProvider
import aws.smithy.kotlin.runtime.http.HttpBody
import aws.smithy.kotlin.runtime.http.HttpMethod
import aws.smithy.kotlin.runtime.http.operation.HttpSerialize
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 CreateGlossaryTermOperationSerializer: HttpSerialize {
override suspend fun serialize(context: ExecutionContext, input: CreateGlossaryTermRequest): HttpRequestBuilder {
val builder = HttpRequestBuilder()
builder.method = HttpMethod.POST
builder.url {
requireNotNull(input.domainIdentifier) { "domainIdentifier is bound to the URI and must not be null" }
path.encodedSegments {
add(PercentEncoding.Path.encode("v2"))
add(PercentEncoding.Path.encode("domains"))
add(PercentEncoding.SmithyLabel.encode("${input.domainIdentifier}"))
add(PercentEncoding.Path.encode("glossary-terms"))
}
}
val payload = serializeCreateGlossaryTermOperationBody(context, input)
builder.body = HttpBody.fromBytes(payload)
if (builder.body !is HttpBody.Empty) {
builder.headers.setMissing("Content-Type", "application/json")
}
return builder
}
}
private fun serializeCreateGlossaryTermOperationBody(context: ExecutionContext, input: CreateGlossaryTermRequest): ByteArray {
val serializer = JsonSerializer()
val CLIENTTOKEN_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("clientToken"))
val GLOSSARYIDENTIFIER_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("glossaryIdentifier"))
val LONGDESCRIPTION_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("longDescription"))
val NAME_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("name"))
val SHORTDESCRIPTION_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("shortDescription"))
val STATUS_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Enum, JsonSerialName("status"))
val TERMRELATIONS_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Struct, JsonSerialName("termRelations"))
val OBJ_DESCRIPTOR = SdkObjectDescriptor.build {
field(CLIENTTOKEN_DESCRIPTOR)
field(GLOSSARYIDENTIFIER_DESCRIPTOR)
field(LONGDESCRIPTION_DESCRIPTOR)
field(NAME_DESCRIPTOR)
field(SHORTDESCRIPTION_DESCRIPTOR)
field(STATUS_DESCRIPTOR)
field(TERMRELATIONS_DESCRIPTOR)
}
serializer.serializeStruct(OBJ_DESCRIPTOR) {
input.clientToken?.let { field(CLIENTTOKEN_DESCRIPTOR, it) } ?: field(CLIENTTOKEN_DESCRIPTOR, context.idempotencyTokenProvider.generateToken())
input.glossaryIdentifier?.let { field(GLOSSARYIDENTIFIER_DESCRIPTOR, it) }
input.longDescription?.let { field(LONGDESCRIPTION_DESCRIPTOR, it) }
input.name?.let { field(NAME_DESCRIPTOR, it) }
input.shortDescription?.let { field(SHORTDESCRIPTION_DESCRIPTOR, it) }
input.status?.let { field(STATUS_DESCRIPTOR, it.value) }
input.termRelations?.let { field(TERMRELATIONS_DESCRIPTOR, it, ::serializeTermRelationsDocument) }
}
return serializer.toByteArray()
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy