commonMain.aws.sdk.kotlin.services.devicefarm.serde.ScheduleRunOperationSerializer.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of devicefarm-jvm Show documentation
Show all versions of devicefarm-jvm Show documentation
The AWS SDK for Kotlin client for Device Farm
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.devicefarm.serde
import aws.sdk.kotlin.services.devicefarm.model.DeviceSelectionConfiguration
import aws.sdk.kotlin.services.devicefarm.model.ExecutionConfiguration
import aws.sdk.kotlin.services.devicefarm.model.ScheduleRunConfiguration
import aws.sdk.kotlin.services.devicefarm.model.ScheduleRunRequest
import aws.sdk.kotlin.services.devicefarm.model.ScheduleRunTest
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 ScheduleRunOperationSerializer: HttpSerializer.NonStreaming {
override fun serialize(context: ExecutionContext, input: ScheduleRunRequest): HttpRequestBuilder {
val builder = HttpRequestBuilder()
builder.method = HttpMethod.POST
builder.url {
path.encoded = "/"
}
val payload = serializeScheduleRunOperationBody(context, input)
builder.body = HttpBody.fromBytes(payload)
if (builder.body !is HttpBody.Empty) {
builder.headers.setMissing("Content-Type", "application/x-amz-json-1.1")
}
return builder
}
}
private fun serializeScheduleRunOperationBody(context: ExecutionContext, input: ScheduleRunRequest): ByteArray {
val serializer = JsonSerializer()
val APPARN_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("appArn"))
val CONFIGURATION_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Struct, JsonSerialName("configuration"))
val DEVICEPOOLARN_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("devicePoolArn"))
val DEVICESELECTIONCONFIGURATION_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Struct, JsonSerialName("deviceSelectionConfiguration"))
val EXECUTIONCONFIGURATION_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Struct, JsonSerialName("executionConfiguration"))
val NAME_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("name"))
val PROJECTARN_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("projectArn"))
val TEST_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Struct, JsonSerialName("test"))
val OBJ_DESCRIPTOR = SdkObjectDescriptor.build {
field(APPARN_DESCRIPTOR)
field(CONFIGURATION_DESCRIPTOR)
field(DEVICEPOOLARN_DESCRIPTOR)
field(DEVICESELECTIONCONFIGURATION_DESCRIPTOR)
field(EXECUTIONCONFIGURATION_DESCRIPTOR)
field(NAME_DESCRIPTOR)
field(PROJECTARN_DESCRIPTOR)
field(TEST_DESCRIPTOR)
}
serializer.serializeStruct(OBJ_DESCRIPTOR) {
input.appArn?.let { field(APPARN_DESCRIPTOR, it) }
input.configuration?.let { field(CONFIGURATION_DESCRIPTOR, it, ::serializeScheduleRunConfigurationDocument) }
input.devicePoolArn?.let { field(DEVICEPOOLARN_DESCRIPTOR, it) }
input.deviceSelectionConfiguration?.let { field(DEVICESELECTIONCONFIGURATION_DESCRIPTOR, it, ::serializeDeviceSelectionConfigurationDocument) }
input.executionConfiguration?.let { field(EXECUTIONCONFIGURATION_DESCRIPTOR, it, ::serializeExecutionConfigurationDocument) }
input.name?.let { field(NAME_DESCRIPTOR, it) }
input.projectArn?.let { field(PROJECTARN_DESCRIPTOR, it) }
input.test?.let { field(TEST_DESCRIPTOR, it, ::serializeScheduleRunTestDocument) }
}
return serializer.toByteArray()
}