commonMain.aws.sdk.kotlin.services.deadline.serde.GetJobOperationDeserializer.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of deadline-jvm Show documentation
Show all versions of deadline-jvm Show documentation
The AWS SDK for Kotlin client for deadline
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.deadline.serde
import aws.sdk.kotlin.services.deadline.model.Attachments
import aws.sdk.kotlin.services.deadline.model.DeadlineException
import aws.sdk.kotlin.services.deadline.model.GetJobResponse
import aws.sdk.kotlin.services.deadline.model.JobLifecycleStatus
import aws.sdk.kotlin.services.deadline.model.JobParameter
import aws.sdk.kotlin.services.deadline.model.JobTargetTaskRunStatus
import aws.sdk.kotlin.services.deadline.model.TaskRunStatus
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
import kotlin.collections.mutableMapOf
internal class GetJobOperationDeserializer: HttpDeserializer.NonStreaming {
override fun deserialize(context: ExecutionContext, call: HttpCall, payload: ByteArray?): GetJobResponse {
val response = call.response
if (!response.status.isSuccess()) {
throwGetJobError(context, call, payload)
}
val builder = GetJobResponse.Builder()
if (payload != null) {
deserializeGetJobOperationBody(builder, payload)
}
builder.correctErrors()
return builder.build()
}
}
private fun throwGetJobError(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 deserializeGetJobOperationBody(builder: GetJobResponse.Builder, payload: ByteArray) {
val deserializer = JsonDeserializer(payload)
val ATTACHMENTS_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Struct, JsonSerialName("attachments"))
val CREATEDAT_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Timestamp, JsonSerialName("createdAt"))
val CREATEDBY_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("createdBy"))
val DESCRIPTION_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("description"))
val ENDEDAT_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Timestamp, JsonSerialName("endedAt"))
val JOBID_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("jobId"))
val LIFECYCLESTATUS_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Enum, JsonSerialName("lifecycleStatus"))
val LIFECYCLESTATUSMESSAGE_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("lifecycleStatusMessage"))
val MAXFAILEDTASKSCOUNT_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Integer, JsonSerialName("maxFailedTasksCount"))
val MAXRETRIESPERTASK_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Integer, JsonSerialName("maxRetriesPerTask"))
val NAME_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("name"))
val PARAMETERS_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Map, JsonSerialName("parameters"))
val PRIORITY_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Integer, JsonSerialName("priority"))
val STARTEDAT_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Timestamp, JsonSerialName("startedAt"))
val STORAGEPROFILEID_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("storageProfileId"))
val TARGETTASKRUNSTATUS_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Enum, JsonSerialName("targetTaskRunStatus"))
val TASKRUNSTATUS_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Enum, JsonSerialName("taskRunStatus"))
val TASKRUNSTATUSCOUNTS_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Map, JsonSerialName("taskRunStatusCounts"))
val UPDATEDAT_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Timestamp, JsonSerialName("updatedAt"))
val UPDATEDBY_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("updatedBy"))
val OBJ_DESCRIPTOR = SdkObjectDescriptor.build {
field(ATTACHMENTS_DESCRIPTOR)
field(CREATEDAT_DESCRIPTOR)
field(CREATEDBY_DESCRIPTOR)
field(DESCRIPTION_DESCRIPTOR)
field(ENDEDAT_DESCRIPTOR)
field(JOBID_DESCRIPTOR)
field(LIFECYCLESTATUS_DESCRIPTOR)
field(LIFECYCLESTATUSMESSAGE_DESCRIPTOR)
field(MAXFAILEDTASKSCOUNT_DESCRIPTOR)
field(MAXRETRIESPERTASK_DESCRIPTOR)
field(NAME_DESCRIPTOR)
field(PARAMETERS_DESCRIPTOR)
field(PRIORITY_DESCRIPTOR)
field(STARTEDAT_DESCRIPTOR)
field(STORAGEPROFILEID_DESCRIPTOR)
field(TARGETTASKRUNSTATUS_DESCRIPTOR)
field(TASKRUNSTATUS_DESCRIPTOR)
field(TASKRUNSTATUSCOUNTS_DESCRIPTOR)
field(UPDATEDAT_DESCRIPTOR)
field(UPDATEDBY_DESCRIPTOR)
}
deserializer.deserializeStruct(OBJ_DESCRIPTOR) {
loop@while (true) {
when (findNextFieldIndex()) {
ATTACHMENTS_DESCRIPTOR.index -> builder.attachments = deserializeAttachmentsDocument(deserializer)
CREATEDAT_DESCRIPTOR.index -> builder.createdAt = deserializeInstant(TimestampFormat.ISO_8601)
CREATEDBY_DESCRIPTOR.index -> builder.createdBy = deserializeString()
DESCRIPTION_DESCRIPTOR.index -> builder.description = deserializeString()
ENDEDAT_DESCRIPTOR.index -> builder.endedAt = deserializeInstant(TimestampFormat.ISO_8601)
JOBID_DESCRIPTOR.index -> builder.jobId = deserializeString()
LIFECYCLESTATUS_DESCRIPTOR.index -> builder.lifecycleStatus = deserializeString().let { JobLifecycleStatus.fromValue(it) }
LIFECYCLESTATUSMESSAGE_DESCRIPTOR.index -> builder.lifecycleStatusMessage = deserializeString()
MAXFAILEDTASKSCOUNT_DESCRIPTOR.index -> builder.maxFailedTasksCount = deserializeInt()
MAXRETRIESPERTASK_DESCRIPTOR.index -> builder.maxRetriesPerTask = deserializeInt()
NAME_DESCRIPTOR.index -> builder.name = deserializeString()
PARAMETERS_DESCRIPTOR.index -> builder.parameters =
deserializer.deserializeMap(PARAMETERS_DESCRIPTOR) {
val map0 = mutableMapOf()
while (hasNextEntry()) {
val k0 = key()
val v0 = if (nextHasValue()) { deserializeJobParameterDocument(deserializer) } else { deserializeNull(); continue }
map0[k0] = v0
}
map0
}
PRIORITY_DESCRIPTOR.index -> builder.priority = deserializeInt()
STARTEDAT_DESCRIPTOR.index -> builder.startedAt = deserializeInstant(TimestampFormat.ISO_8601)
STORAGEPROFILEID_DESCRIPTOR.index -> builder.storageProfileId = deserializeString()
TARGETTASKRUNSTATUS_DESCRIPTOR.index -> builder.targetTaskRunStatus = deserializeString().let { JobTargetTaskRunStatus.fromValue(it) }
TASKRUNSTATUS_DESCRIPTOR.index -> builder.taskRunStatus = deserializeString().let { TaskRunStatus.fromValue(it) }
TASKRUNSTATUSCOUNTS_DESCRIPTOR.index -> builder.taskRunStatusCounts =
deserializer.deserializeMap(TASKRUNSTATUSCOUNTS_DESCRIPTOR) {
val map0 = mutableMapOf()
while (hasNextEntry()) {
val k0 = TaskRunStatus.fromValue(key())
val v0 = if (nextHasValue()) { deserializeInt() } else { deserializeNull(); continue }
map0[k0] = v0
}
map0
}
UPDATEDAT_DESCRIPTOR.index -> builder.updatedAt = deserializeInstant(TimestampFormat.ISO_8601)
UPDATEDBY_DESCRIPTOR.index -> builder.updatedBy = deserializeString()
null -> break@loop
else -> skipValue()
}
}
}
}