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

commonMain.aws.sdk.kotlin.services.neptune.serde.ModifyDBClusterSnapshotAttributeOperationSerializer.kt Maven / Gradle / Ivy

There is a newer version: 1.3.76
Show newest version
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!

package aws.sdk.kotlin.services.neptune.serde

import aws.sdk.kotlin.services.neptune.model.ModifyDbClusterSnapshotAttributeRequest
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.formurl.FormUrlCollectionName
import aws.smithy.kotlin.runtime.serde.formurl.FormUrlSerialName
import aws.smithy.kotlin.runtime.serde.formurl.FormUrlSerializer
import aws.smithy.kotlin.runtime.serde.formurl.QueryLiteral
import aws.smithy.kotlin.runtime.serde.serializeList
import aws.smithy.kotlin.runtime.serde.serializeMap
import aws.smithy.kotlin.runtime.serde.serializeStruct


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

        builder.url {
            path.encoded = "/"
        }

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

private fun serializeModifyDBClusterSnapshotAttributeOperationBody(context: ExecutionContext, input: ModifyDbClusterSnapshotAttributeRequest): ByteArray {
    val serializer = FormUrlSerializer()
    val ATTRIBUTENAME_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, FormUrlSerialName("AttributeName"))
    val DBCLUSTERSNAPSHOTIDENTIFIER_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, FormUrlSerialName("DBClusterSnapshotIdentifier"))
    val VALUESTOADD_DESCRIPTOR = SdkFieldDescriptor(SerialKind.List, FormUrlSerialName("ValuesToAdd"), FormUrlCollectionName("AttributeValue"))
    val VALUESTOREMOVE_DESCRIPTOR = SdkFieldDescriptor(SerialKind.List, FormUrlSerialName("ValuesToRemove"), FormUrlCollectionName("AttributeValue"))
    val OBJ_DESCRIPTOR = SdkObjectDescriptor.build {
        trait(FormUrlSerialName("ModifyDBClusterSnapshotAttributeMessage"))
        trait(QueryLiteral("Action", "ModifyDBClusterSnapshotAttribute"))
        trait(QueryLiteral("Version", "2014-10-31"))
        field(ATTRIBUTENAME_DESCRIPTOR)
        field(DBCLUSTERSNAPSHOTIDENTIFIER_DESCRIPTOR)
        field(VALUESTOADD_DESCRIPTOR)
        field(VALUESTOREMOVE_DESCRIPTOR)
    }

    serializer.serializeStruct(OBJ_DESCRIPTOR) {
        input.attributeName?.let { field(ATTRIBUTENAME_DESCRIPTOR, it) }
        input.dbClusterSnapshotIdentifier?.let { field(DBCLUSTERSNAPSHOTIDENTIFIER_DESCRIPTOR, it) }
        if (input.valuesToAdd != null) {
            listField(VALUESTOADD_DESCRIPTOR) {
                for (el0 in input.valuesToAdd) {
                    serializeString(el0)
                }
            }
        }
        if (input.valuesToRemove != null) {
            listField(VALUESTOREMOVE_DESCRIPTOR) {
                for (el0 in input.valuesToRemove) {
                    serializeString(el0)
                }
            }
        }
    }
    return serializer.toByteArray()
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy