commonMain.aws.sdk.kotlin.services.finspacedata.serde.GetDataViewOperationDeserializer.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of finspacedata-jvm Show documentation
Show all versions of finspacedata-jvm Show documentation
The AWS SDK for Kotlin client for finspace data
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.finspacedata.serde
import aws.sdk.kotlin.services.finspacedata.model.DataViewDestinationTypeParams
import aws.sdk.kotlin.services.finspacedata.model.DataViewErrorInfo
import aws.sdk.kotlin.services.finspacedata.model.DataViewStatus
import aws.sdk.kotlin.services.finspacedata.model.FinspaceDataException
import aws.sdk.kotlin.services.finspacedata.model.GetDataViewResponse
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 kotlin.collections.mutableListOf
internal class GetDataViewOperationDeserializer: HttpDeserializer.NonStreaming {
override fun deserialize(context: ExecutionContext, call: HttpCall, payload: ByteArray?): GetDataViewResponse {
val response = call.response
if (!response.status.isSuccess()) {
throwGetDataViewError(context, call, payload)
}
val builder = GetDataViewResponse.Builder()
if (payload != null) {
deserializeGetDataViewOperationBody(builder, payload)
}
builder.correctErrors()
return builder.build()
}
}
private fun throwGetDataViewError(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 FinspaceDataException("Failed to parse response as 'restJson1' error", ex).also {
setAseErrorMetadata(it, wrappedCall.response, null)
}
}
val ex = when(errorDetails.code) {
"ValidationException" -> ValidationExceptionDeserializer().deserialize(context, wrappedCall, payload)
"InternalServerException" -> InternalServerExceptionDeserializer().deserialize(context, wrappedCall, payload)
"ConflictException" -> ConflictExceptionDeserializer().deserialize(context, wrappedCall, payload)
"ResourceNotFoundException" -> ResourceNotFoundExceptionDeserializer().deserialize(context, wrappedCall, payload)
"ThrottlingException" -> ThrottlingExceptionDeserializer().deserialize(context, wrappedCall, payload)
else -> FinspaceDataException(errorDetails.message)
}
setAseErrorMetadata(ex, wrappedResponse, errorDetails)
throw ex
}
private fun deserializeGetDataViewOperationBody(builder: GetDataViewResponse.Builder, payload: ByteArray) {
val deserializer = JsonDeserializer(payload)
val ASOFTIMESTAMP_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Long, JsonSerialName("asOfTimestamp"))
val AUTOUPDATE_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Boolean, JsonSerialName("autoUpdate"))
val CREATETIME_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Long, JsonSerialName("createTime"))
val DATAVIEWARN_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("dataViewArn"))
val DATAVIEWID_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("dataViewId"))
val DATASETID_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("datasetId"))
val DESTINATIONTYPEPARAMS_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Struct, JsonSerialName("destinationTypeParams"))
val ERRORINFO_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Struct, JsonSerialName("errorInfo"))
val LASTMODIFIEDTIME_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Long, JsonSerialName("lastModifiedTime"))
val PARTITIONCOLUMNS_DESCRIPTOR = SdkFieldDescriptor(SerialKind.List, JsonSerialName("partitionColumns"))
val SORTCOLUMNS_DESCRIPTOR = SdkFieldDescriptor(SerialKind.List, JsonSerialName("sortColumns"))
val STATUS_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Enum, JsonSerialName("status"))
val OBJ_DESCRIPTOR = SdkObjectDescriptor.build {
field(ASOFTIMESTAMP_DESCRIPTOR)
field(AUTOUPDATE_DESCRIPTOR)
field(CREATETIME_DESCRIPTOR)
field(DATAVIEWARN_DESCRIPTOR)
field(DATAVIEWID_DESCRIPTOR)
field(DATASETID_DESCRIPTOR)
field(DESTINATIONTYPEPARAMS_DESCRIPTOR)
field(ERRORINFO_DESCRIPTOR)
field(LASTMODIFIEDTIME_DESCRIPTOR)
field(PARTITIONCOLUMNS_DESCRIPTOR)
field(SORTCOLUMNS_DESCRIPTOR)
field(STATUS_DESCRIPTOR)
}
deserializer.deserializeStruct(OBJ_DESCRIPTOR) {
loop@while (true) {
when (findNextFieldIndex()) {
ASOFTIMESTAMP_DESCRIPTOR.index -> builder.asOfTimestamp = deserializeLong()
AUTOUPDATE_DESCRIPTOR.index -> builder.autoUpdate = deserializeBoolean()
CREATETIME_DESCRIPTOR.index -> builder.createTime = deserializeLong()
DATAVIEWARN_DESCRIPTOR.index -> builder.dataViewArn = deserializeString()
DATAVIEWID_DESCRIPTOR.index -> builder.dataViewId = deserializeString()
DATASETID_DESCRIPTOR.index -> builder.datasetId = deserializeString()
DESTINATIONTYPEPARAMS_DESCRIPTOR.index -> builder.destinationTypeParams = deserializeDataViewDestinationTypeParamsDocument(deserializer)
ERRORINFO_DESCRIPTOR.index -> builder.errorInfo = deserializeDataViewErrorInfoDocument(deserializer)
LASTMODIFIEDTIME_DESCRIPTOR.index -> builder.lastModifiedTime = deserializeLong()
PARTITIONCOLUMNS_DESCRIPTOR.index -> builder.partitionColumns =
deserializer.deserializeList(PARTITIONCOLUMNS_DESCRIPTOR) {
val col0 = mutableListOf()
while (hasNextElement()) {
val el0 = if (nextHasValue()) { deserializeString() } else { deserializeNull(); continue }
col0.add(el0)
}
col0
}
SORTCOLUMNS_DESCRIPTOR.index -> builder.sortColumns =
deserializer.deserializeList(SORTCOLUMNS_DESCRIPTOR) {
val col0 = mutableListOf()
while (hasNextElement()) {
val el0 = if (nextHasValue()) { deserializeString() } else { deserializeNull(); continue }
col0.add(el0)
}
col0
}
STATUS_DESCRIPTOR.index -> builder.status = deserializeString().let { DataViewStatus.fromValue(it) }
null -> break@loop
else -> skipValue()
}
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy