commonMain.aws.sdk.kotlin.services.route53.serde.CreateHostedZoneOperationSerializer.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
The newest version!
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.route53.serde
import aws.sdk.kotlin.services.route53.model.CreateHostedZoneRequest
import aws.sdk.kotlin.services.route53.model.HostedZoneConfig
import aws.sdk.kotlin.services.route53.model.Vpc
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
internal class CreateHostedZoneOperationSerializer: HttpSerializer.NonStreaming {
override fun serialize(context: ExecutionContext, input: CreateHostedZoneRequest): HttpRequestBuilder {
val builder = HttpRequestBuilder()
builder.method = HttpMethod.POST
builder.url {
path.encoded = "/2013-04-01/hostedzone"
}
val payload = serializeCreateHostedZoneOperationBody(context, input)
builder.body = HttpBody.fromBytes(payload)
if (builder.body !is HttpBody.Empty) {
builder.headers.setMissing("Content-Type", "application/xml")
}
return builder
}
}
private fun serializeCreateHostedZoneOperationBody(context: ExecutionContext, input: CreateHostedZoneRequest): ByteArray {
val serializer = XmlSerializer()
val CALLERREFERENCE_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, XmlSerialName("CallerReference"))
val DELEGATIONSETID_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, XmlSerialName("DelegationSetId"))
val HOSTEDZONECONFIG_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Struct, XmlSerialName("HostedZoneConfig"))
val NAME_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, XmlSerialName("Name"))
val VPC_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Struct, XmlSerialName("VPC"))
val OBJ_DESCRIPTOR = SdkObjectDescriptor.build {
trait(XmlSerialName("CreateHostedZoneRequest"))
trait(XmlNamespace("https://route53.amazonaws.com/doc/2013-04-01/"))
field(CALLERREFERENCE_DESCRIPTOR)
field(DELEGATIONSETID_DESCRIPTOR)
field(HOSTEDZONECONFIG_DESCRIPTOR)
field(NAME_DESCRIPTOR)
field(VPC_DESCRIPTOR)
}
serializer.serializeStruct(OBJ_DESCRIPTOR) {
input.callerReference?.let { field(CALLERREFERENCE_DESCRIPTOR, it) }
input.delegationSetId?.let { field(DELEGATIONSETID_DESCRIPTOR, it) }
input.hostedZoneConfig?.let { field(HOSTEDZONECONFIG_DESCRIPTOR, it, ::serializeHostedZoneConfigDocument) }
input.name?.let { field(NAME_DESCRIPTOR, it) }
input.vpc?.let { field(VPC_DESCRIPTOR, it, ::serializeVpcDocument) }
}
return serializer.toByteArray()
}