
commonMain.aws.sdk.kotlin.services.deadline.serde.GetSessionActionOperationDeserializer.kt Maven / Gradle / Ivy
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.deadline.serde
import aws.sdk.kotlin.services.deadline.model.DeadlineException
import aws.sdk.kotlin.services.deadline.model.GetSessionActionResponse
import aws.sdk.kotlin.services.deadline.model.SessionActionDefinition
import aws.sdk.kotlin.services.deadline.model.SessionActionStatus
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
import aws.smithy.kotlin.runtime.time.Instant
import aws.smithy.kotlin.runtime.time.TimestampFormat
internal class GetSessionActionOperationDeserializer: HttpDeserializer.NonStreaming {
override fun deserialize(context: ExecutionContext, call: HttpCall, payload: ByteArray?): GetSessionActionResponse {
val response = call.response
if (!response.status.isSuccess()) {
throwGetSessionActionError(context, call, payload)
}
val builder = GetSessionActionResponse.Builder()
if (payload != null) {
deserializeGetSessionActionOperationBody(builder, payload)
}
builder.correctErrors()
return builder.build()
}
}
private fun throwGetSessionActionError(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 DeadlineException("Failed to parse response as 'restJson1' error", ex).also {
setAseErrorMetadata(it, wrappedCall.response, null)
}
}
val ex = when(errorDetails.code) {
"InternalServerErrorException" -> InternalServerErrorExceptionDeserializer().deserialize(context, wrappedCall, payload)
"AccessDeniedException" -> AccessDeniedExceptionDeserializer().deserialize(context, wrappedCall, payload)
"ValidationException" -> ValidationExceptionDeserializer().deserialize(context, wrappedCall, payload)
"ResourceNotFoundException" -> ResourceNotFoundExceptionDeserializer().deserialize(context, wrappedCall, payload)
"ThrottlingException" -> ThrottlingExceptionDeserializer().deserialize(context, wrappedCall, payload)
else -> DeadlineException(errorDetails.message)
}
setAseErrorMetadata(ex, wrappedResponse, errorDetails)
throw ex
}
private fun deserializeGetSessionActionOperationBody(builder: GetSessionActionResponse.Builder, payload: ByteArray) {
val deserializer = JsonDeserializer(payload)
val DEFINITION_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Struct, JsonSerialName("definition"))
val ENDEDAT_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Timestamp, JsonSerialName("endedAt"))
val PROCESSEXITCODE_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Integer, JsonSerialName("processExitCode"))
val PROGRESSMESSAGE_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("progressMessage"))
val PROGRESSPERCENT_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Float, JsonSerialName("progressPercent"))
val SESSIONACTIONID_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("sessionActionId"))
val SESSIONID_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("sessionId"))
val STARTEDAT_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Timestamp, JsonSerialName("startedAt"))
val STATUS_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Enum, JsonSerialName("status"))
val WORKERUPDATEDAT_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Timestamp, JsonSerialName("workerUpdatedAt"))
val OBJ_DESCRIPTOR = SdkObjectDescriptor.build {
field(DEFINITION_DESCRIPTOR)
field(ENDEDAT_DESCRIPTOR)
field(PROCESSEXITCODE_DESCRIPTOR)
field(PROGRESSMESSAGE_DESCRIPTOR)
field(PROGRESSPERCENT_DESCRIPTOR)
field(SESSIONACTIONID_DESCRIPTOR)
field(SESSIONID_DESCRIPTOR)
field(STARTEDAT_DESCRIPTOR)
field(STATUS_DESCRIPTOR)
field(WORKERUPDATEDAT_DESCRIPTOR)
}
deserializer.deserializeStruct(OBJ_DESCRIPTOR) {
loop@while (true) {
when (findNextFieldIndex()) {
DEFINITION_DESCRIPTOR.index -> builder.definition = deserializeSessionActionDefinitionDocument(deserializer)
ENDEDAT_DESCRIPTOR.index -> builder.endedAt = deserializeInstant(TimestampFormat.ISO_8601)
PROCESSEXITCODE_DESCRIPTOR.index -> builder.processExitCode = deserializeInt()
PROGRESSMESSAGE_DESCRIPTOR.index -> builder.progressMessage = deserializeString()
PROGRESSPERCENT_DESCRIPTOR.index -> builder.progressPercent = deserializeFloat()
SESSIONACTIONID_DESCRIPTOR.index -> builder.sessionActionId = deserializeString()
SESSIONID_DESCRIPTOR.index -> builder.sessionId = deserializeString()
STARTEDAT_DESCRIPTOR.index -> builder.startedAt = deserializeInstant(TimestampFormat.ISO_8601)
STATUS_DESCRIPTOR.index -> builder.status = deserializeString().let { SessionActionStatus.fromValue(it) }
WORKERUPDATEDAT_DESCRIPTOR.index -> builder.workerUpdatedAt = deserializeInstant(TimestampFormat.ISO_8601)
null -> break@loop
else -> skipValue()
}
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy