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

commonMain.aws.sdk.kotlin.services.nimble.serde.UpdateLaunchProfileOperationSerializer.kt Maven / Gradle / Ivy

The newest version!
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!

package aws.sdk.kotlin.services.nimble.serde

import aws.sdk.kotlin.services.nimble.model.StreamConfigurationCreate
import aws.sdk.kotlin.services.nimble.model.UpdateLaunchProfileRequest
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.HttpSerializer
import aws.smithy.kotlin.runtime.http.request.HttpRequestBuilder
import aws.smithy.kotlin.runtime.http.request.headers
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 UpdateLaunchProfileOperationSerializer: HttpSerializer.NonStreaming {
    override fun serialize(context: ExecutionContext, input: UpdateLaunchProfileRequest): HttpRequestBuilder {
        val builder = HttpRequestBuilder()
        builder.method = HttpMethod.PATCH

        builder.url {
            requireNotNull(input.studioId) { "studioId is bound to the URI and must not be null" }
            requireNotNull(input.launchProfileId) { "launchProfileId is bound to the URI and must not be null" }
            path.encodedSegments {
                add(PercentEncoding.Path.encode("2020-08-01"))
                add(PercentEncoding.Path.encode("studios"))
                add(PercentEncoding.SmithyLabel.encode(input.studioId))
                add(PercentEncoding.Path.encode("launch-profiles"))
                add(PercentEncoding.SmithyLabel.encode(input.launchProfileId))
            }
        }

        builder.headers {
            append("X-Amz-Client-Token", (input.clientToken ?: context.idempotencyTokenProvider.generateToken()))
        }

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

private fun serializeUpdateLaunchProfileOperationBody(context: ExecutionContext, input: UpdateLaunchProfileRequest): ByteArray {
    val serializer = JsonSerializer()
    val DESCRIPTION_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("description"))
    val LAUNCHPROFILEPROTOCOLVERSIONS_DESCRIPTOR = SdkFieldDescriptor(SerialKind.List, JsonSerialName("launchProfileProtocolVersions"))
    val NAME_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("name"))
    val STREAMCONFIGURATION_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Struct, JsonSerialName("streamConfiguration"))
    val STUDIOCOMPONENTIDS_DESCRIPTOR = SdkFieldDescriptor(SerialKind.List, JsonSerialName("studioComponentIds"))
    val OBJ_DESCRIPTOR = SdkObjectDescriptor.build {
        field(DESCRIPTION_DESCRIPTOR)
        field(LAUNCHPROFILEPROTOCOLVERSIONS_DESCRIPTOR)
        field(NAME_DESCRIPTOR)
        field(STREAMCONFIGURATION_DESCRIPTOR)
        field(STUDIOCOMPONENTIDS_DESCRIPTOR)
    }

    serializer.serializeStruct(OBJ_DESCRIPTOR) {
        input.description?.let { field(DESCRIPTION_DESCRIPTOR, it) }
        if (input.launchProfileProtocolVersions != null) {
            listField(LAUNCHPROFILEPROTOCOLVERSIONS_DESCRIPTOR) {
                for (el0 in input.launchProfileProtocolVersions) {
                    serializeString(el0)
                }
            }
        }
        input.name?.let { field(NAME_DESCRIPTOR, it) }
        input.streamConfiguration?.let { field(STREAMCONFIGURATION_DESCRIPTOR, it, ::serializeStreamConfigurationCreateDocument) }
        if (input.studioComponentIds != null) {
            listField(STUDIOCOMPONENTIDS_DESCRIPTOR) {
                for (el0 in input.studioComponentIds) {
                    serializeString(el0)
                }
            }
        }
    }
    return serializer.toByteArray()
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy