commonMain.aws.sdk.kotlin.services.tnb.serde.PutSolFunctionPackageContentOperationSerializer.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tnb-jvm Show documentation
Show all versions of tnb-jvm Show documentation
The AWS SDK for Kotlin client for tnb
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.tnb.serde
import aws.sdk.kotlin.services.tnb.model.PackageContentType
import aws.sdk.kotlin.services.tnb.model.PutSolFunctionPackageContentRequest
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.text.encoding.PercentEncoding
internal class PutSolFunctionPackageContentOperationSerializer: HttpSerializer.NonStreaming {
override fun serialize(context: ExecutionContext, input: PutSolFunctionPackageContentRequest): HttpRequestBuilder {
val builder = HttpRequestBuilder()
builder.method = HttpMethod.PUT
builder.url {
requireNotNull(input.vnfPkgId) { "vnfPkgId is bound to the URI and must not be null" }
path.encodedSegments {
add(PercentEncoding.Path.encode("sol"))
add(PercentEncoding.Path.encode("vnfpkgm"))
add(PercentEncoding.Path.encode("v1"))
add(PercentEncoding.Path.encode("vnf_packages"))
add(PercentEncoding.SmithyLabel.encode(input.vnfPkgId))
add(PercentEncoding.Path.encode("package_content"))
}
}
builder.headers {
if (input.contentType != null) append("Content-Type", input.contentType.value)
}
if (input.file != null) {
builder.body = HttpBody.fromBytes(input.file)
}
if (builder.body !is HttpBody.Empty) {
builder.headers.setMissing("Content-Type", "application/octet-stream")
}
if (input.file == null) {
builder.headers.setMissing("Content-Type", "application/octet-stream")
}
return builder
}
}