All Downloads are FREE. Search and download functionalities are using the official Maven repository.

commonMain.aws.sdk.kotlin.services.route53.serde.DeleteVPCAssociationAuthorizationOperationSerializer.kt Maven / Gradle / Ivy

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.DeleteVpcAssociationAuthorizationRequest
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
import aws.smithy.kotlin.runtime.text.encoding.PercentEncoding


internal class DeleteVPCAssociationAuthorizationOperationSerializer: HttpSerializer.NonStreaming {
    override fun serialize(context: ExecutionContext, input: DeleteVpcAssociationAuthorizationRequest): HttpRequestBuilder {
        val builder = HttpRequestBuilder()
        builder.method = HttpMethod.POST

        builder.url {
            requireNotNull(input.hostedZoneId) { "hostedZoneId is bound to the URI and must not be null" }
            path.encodedSegments {
                add(PercentEncoding.Path.encode("2013-04-01"))
                add(PercentEncoding.Path.encode("hostedzone"))
                add(PercentEncoding.SmithyLabel.encode(input.hostedZoneId))
                add(PercentEncoding.Path.encode("deauthorizevpcassociation"))
            }
        }

        val payload = serializeDeleteVPCAssociationAuthorizationOperationBody(context, input)
        builder.body = HttpBody.fromBytes(payload)
        if (builder.body !is HttpBody.Empty) {
            builder.headers.setMissing("Content-Type", "application/xml")
        }
        return builder
    }
}

private fun serializeDeleteVPCAssociationAuthorizationOperationBody(context: ExecutionContext, input: DeleteVpcAssociationAuthorizationRequest): ByteArray {
    val serializer = XmlSerializer()
    val VPC_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Struct, XmlSerialName("VPC"))
    val OBJ_DESCRIPTOR = SdkObjectDescriptor.build {
        trait(XmlSerialName("DeleteVPCAssociationAuthorizationRequest"))
        trait(XmlNamespace("https://route53.amazonaws.com/doc/2013-04-01/"))
        field(VPC_DESCRIPTOR)
    }

    serializer.serializeStruct(OBJ_DESCRIPTOR) {
        input.vpc?.let { field(VPC_DESCRIPTOR, it, ::serializeVpcDocument) }
    }
    return serializer.toByteArray()
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy