commonMain.aws.sdk.kotlin.services.iotsitewise.serde.CreateBulkImportJobOperationSerializer.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of iotsitewise-jvm Show documentation
Show all versions of iotsitewise-jvm Show documentation
The AWS SDK for Kotlin client for IoTSiteWise
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.iotsitewise.serde
import aws.sdk.kotlin.services.iotsitewise.model.CreateBulkImportJobRequest
import aws.sdk.kotlin.services.iotsitewise.model.ErrorReportLocation
import aws.sdk.kotlin.services.iotsitewise.model.File
import aws.sdk.kotlin.services.iotsitewise.model.JobConfiguration
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.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
internal class CreateBulkImportJobOperationSerializer: HttpSerializer.NonStreaming {
override fun serialize(context: ExecutionContext, input: CreateBulkImportJobRequest): HttpRequestBuilder {
val builder = HttpRequestBuilder()
builder.method = HttpMethod.POST
builder.url {
path.encoded = "/jobs"
}
val payload = serializeCreateBulkImportJobOperationBody(context, input)
builder.body = HttpBody.fromBytes(payload)
if (builder.body !is HttpBody.Empty) {
builder.headers.setMissing("Content-Type", "application/json")
}
return builder
}
}
private fun serializeCreateBulkImportJobOperationBody(context: ExecutionContext, input: CreateBulkImportJobRequest): ByteArray {
val serializer = JsonSerializer()
val ADAPTIVEINGESTION_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Boolean, JsonSerialName("adaptiveIngestion"))
val DELETEFILESAFTERIMPORT_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Boolean, JsonSerialName("deleteFilesAfterImport"))
val ERRORREPORTLOCATION_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Struct, JsonSerialName("errorReportLocation"))
val FILES_DESCRIPTOR = SdkFieldDescriptor(SerialKind.List, JsonSerialName("files"))
val JOBCONFIGURATION_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Struct, JsonSerialName("jobConfiguration"))
val JOBNAME_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("jobName"))
val JOBROLEARN_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("jobRoleArn"))
val OBJ_DESCRIPTOR = SdkObjectDescriptor.build {
field(ADAPTIVEINGESTION_DESCRIPTOR)
field(DELETEFILESAFTERIMPORT_DESCRIPTOR)
field(ERRORREPORTLOCATION_DESCRIPTOR)
field(FILES_DESCRIPTOR)
field(JOBCONFIGURATION_DESCRIPTOR)
field(JOBNAME_DESCRIPTOR)
field(JOBROLEARN_DESCRIPTOR)
}
serializer.serializeStruct(OBJ_DESCRIPTOR) {
input.adaptiveIngestion?.let { field(ADAPTIVEINGESTION_DESCRIPTOR, it) }
input.deleteFilesAfterImport?.let { field(DELETEFILESAFTERIMPORT_DESCRIPTOR, it) }
input.errorReportLocation?.let { field(ERRORREPORTLOCATION_DESCRIPTOR, it, ::serializeErrorReportLocationDocument) }
if (input.files != null) {
listField(FILES_DESCRIPTOR) {
for (el0 in input.files) {
serializeSdkSerializable(asSdkSerializable(el0, ::serializeFileDocument))
}
}
}
input.jobConfiguration?.let { field(JOBCONFIGURATION_DESCRIPTOR, it, ::serializeJobConfigurationDocument) }
input.jobName?.let { field(JOBNAME_DESCRIPTOR, it) }
input.jobRoleArn?.let { field(JOBROLEARN_DESCRIPTOR, it) }
}
return serializer.toByteArray()
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy