commonMain.aws.sdk.kotlin.services.route53.serde.ChangeCidrCollectionOperationSerializer.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of route53-jvm Show documentation
Show all versions of route53-jvm Show documentation
The AWS SDK for Kotlin client for Route 53
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.route53.serde
import aws.sdk.kotlin.services.route53.model.ChangeCidrCollectionRequest
import aws.sdk.kotlin.services.route53.model.CidrCollectionChange
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.serializeList
import aws.smithy.kotlin.runtime.serde.serializeMap
import aws.smithy.kotlin.runtime.serde.serializeStruct
import aws.smithy.kotlin.runtime.serde.xml.XmlNamespace
import aws.smithy.kotlin.runtime.serde.xml.XmlSerialName
import aws.smithy.kotlin.runtime.serde.xml.XmlSerializer
import aws.smithy.kotlin.runtime.text.encoding.PercentEncoding
internal class ChangeCidrCollectionOperationSerializer: HttpSerializer.NonStreaming {
override fun serialize(context: ExecutionContext, input: ChangeCidrCollectionRequest): HttpRequestBuilder {
val builder = HttpRequestBuilder()
builder.method = HttpMethod.POST
builder.url {
requireNotNull(input.id) { "id is bound to the URI and must not be null" }
path.encodedSegments {
add(PercentEncoding.Path.encode("2013-04-01"))
add(PercentEncoding.Path.encode("cidrcollection"))
add(PercentEncoding.SmithyLabel.encode(input.id))
}
}
val payload = serializeChangeCidrCollectionOperationBody(context, input)
builder.body = HttpBody.fromBytes(payload)
if (builder.body !is HttpBody.Empty) {
builder.headers.setMissing("Content-Type", "application/xml")
}
return builder
}
}
private fun serializeChangeCidrCollectionOperationBody(context: ExecutionContext, input: ChangeCidrCollectionRequest): ByteArray {
val serializer = XmlSerializer()
val CHANGES_DESCRIPTOR = SdkFieldDescriptor(SerialKind.List, XmlSerialName("Changes"))
val COLLECTIONVERSION_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Long, XmlSerialName("CollectionVersion"))
val OBJ_DESCRIPTOR = SdkObjectDescriptor.build {
trait(XmlSerialName("ChangeCidrCollectionRequest"))
trait(XmlNamespace("https://route53.amazonaws.com/doc/2013-04-01/"))
field(CHANGES_DESCRIPTOR)
field(COLLECTIONVERSION_DESCRIPTOR)
}
serializer.serializeStruct(OBJ_DESCRIPTOR) {
if (input.changes != null) {
listField(CHANGES_DESCRIPTOR) {
for (el0 in input.changes) {
serializeSdkSerializable(asSdkSerializable(el0, ::serializeCidrCollectionChangeDocument))
}
}
}
input.collectionVersion?.let { field(COLLECTIONVERSION_DESCRIPTOR, it) }
}
return serializer.toByteArray()
}