commonMain.aws.sdk.kotlin.services.mediapackage.serde.CreateHarvestJobOperationDeserializer.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mediapackage-jvm Show documentation
Show all versions of mediapackage-jvm Show documentation
The AWS SDK for Kotlin client for MediaPackage
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.mediapackage.serde
import aws.sdk.kotlin.services.mediapackage.model.CreateHarvestJobResponse
import aws.sdk.kotlin.services.mediapackage.model.MediaPackageException
import aws.sdk.kotlin.services.mediapackage.model.S3Destination
import aws.sdk.kotlin.services.mediapackage.model.Status
import aws.smithy.kotlin.runtime.awsprotocol.json.RestJsonErrorDeserializer
import aws.smithy.kotlin.runtime.awsprotocol.setAseErrorMetadata
import aws.smithy.kotlin.runtime.awsprotocol.withPayload
import aws.smithy.kotlin.runtime.http.HttpCall
import aws.smithy.kotlin.runtime.http.isSuccess
import aws.smithy.kotlin.runtime.http.operation.HttpDeserializer
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.serializeList
import aws.smithy.kotlin.runtime.serde.serializeMap
import aws.smithy.kotlin.runtime.serde.serializeStruct
internal class CreateHarvestJobOperationDeserializer: HttpDeserializer.NonStreaming {
override fun deserialize(context: ExecutionContext, call: HttpCall, payload: ByteArray?): CreateHarvestJobResponse {
val response = call.response
if (!response.status.isSuccess()) {
throwCreateHarvestJobError(context, call, payload)
}
val builder = CreateHarvestJobResponse.Builder()
if (payload != null) {
deserializeCreateHarvestJobOperationBody(builder, payload)
}
builder.correctErrors()
return builder.build()
}
}
private fun throwCreateHarvestJobError(context: ExecutionContext, call: HttpCall, payload: ByteArray?): kotlin.Nothing {
val wrappedResponse = call.response.withPayload(payload)
val wrappedCall = call.copy(response = wrappedResponse)
val errorDetails = try {
RestJsonErrorDeserializer.deserialize(call.response.headers, payload)
} catch (ex: Exception) {
throw MediaPackageException("Failed to parse response as 'restJson1' error", ex).also {
setAseErrorMetadata(it, wrappedCall.response, null)
}
}
val ex = when(errorDetails.code) {
"ServiceUnavailableException" -> ServiceUnavailableExceptionDeserializer().deserialize(context, wrappedCall, payload)
"TooManyRequestsException" -> TooManyRequestsExceptionDeserializer().deserialize(context, wrappedCall, payload)
"InternalServerErrorException" -> InternalServerErrorExceptionDeserializer().deserialize(context, wrappedCall, payload)
"UnprocessableEntityException" -> UnprocessableEntityExceptionDeserializer().deserialize(context, wrappedCall, payload)
"ForbiddenException" -> ForbiddenExceptionDeserializer().deserialize(context, wrappedCall, payload)
"NotFoundException" -> NotFoundExceptionDeserializer().deserialize(context, wrappedCall, payload)
else -> MediaPackageException(errorDetails.message)
}
setAseErrorMetadata(ex, wrappedResponse, errorDetails)
throw ex
}
private fun deserializeCreateHarvestJobOperationBody(builder: CreateHarvestJobResponse.Builder, payload: ByteArray) {
val deserializer = JsonDeserializer(payload)
val ARN_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("arn"))
val CHANNELID_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("channelId"))
val CREATEDAT_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("createdAt"))
val ENDTIME_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("endTime"))
val ID_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("id"))
val ORIGINENDPOINTID_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("originEndpointId"))
val S3DESTINATION_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Struct, JsonSerialName("s3Destination"))
val STARTTIME_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("startTime"))
val STATUS_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Enum, JsonSerialName("status"))
val OBJ_DESCRIPTOR = SdkObjectDescriptor.build {
field(ARN_DESCRIPTOR)
field(CHANNELID_DESCRIPTOR)
field(CREATEDAT_DESCRIPTOR)
field(ENDTIME_DESCRIPTOR)
field(ID_DESCRIPTOR)
field(ORIGINENDPOINTID_DESCRIPTOR)
field(S3DESTINATION_DESCRIPTOR)
field(STARTTIME_DESCRIPTOR)
field(STATUS_DESCRIPTOR)
}
deserializer.deserializeStruct(OBJ_DESCRIPTOR) {
loop@while (true) {
when (findNextFieldIndex()) {
ARN_DESCRIPTOR.index -> builder.arn = deserializeString()
CHANNELID_DESCRIPTOR.index -> builder.channelId = deserializeString()
CREATEDAT_DESCRIPTOR.index -> builder.createdAt = deserializeString()
ENDTIME_DESCRIPTOR.index -> builder.endTime = deserializeString()
ID_DESCRIPTOR.index -> builder.id = deserializeString()
ORIGINENDPOINTID_DESCRIPTOR.index -> builder.originEndpointId = deserializeString()
S3DESTINATION_DESCRIPTOR.index -> builder.s3Destination = deserializeS3DestinationDocument(deserializer)
STARTTIME_DESCRIPTOR.index -> builder.startTime = deserializeString()
STATUS_DESCRIPTOR.index -> builder.status = deserializeString().let { Status.fromValue(it) }
null -> break@loop
else -> skipValue()
}
}
}
}