commonMain.aws.sdk.kotlin.services.databrew.serde.DescribeProjectOperationDeserializer.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of databrew-jvm Show documentation
Show all versions of databrew-jvm Show documentation
The AWS Kotlin client for DataBrew
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.databrew.serde
import aws.sdk.kotlin.services.databrew.model.DataBrewException
import aws.sdk.kotlin.services.databrew.model.DescribeProjectResponse
import aws.sdk.kotlin.services.databrew.model.Sample
import aws.sdk.kotlin.services.databrew.model.SessionStatus
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.HttpDeserialize
import aws.smithy.kotlin.runtime.http.readAll
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 kotlin.collections.mutableMapOf
internal class DescribeProjectOperationDeserializer: HttpDeserialize {
override suspend fun deserialize(context: ExecutionContext, call: HttpCall): DescribeProjectResponse {
val response = call.response
if (!response.status.isSuccess()) {
throwDescribeProjectError(context, call)
}
val builder = DescribeProjectResponse.Builder()
val payload = response.body.readAll()
if (payload != null) {
deserializeDescribeProjectOperationBody(builder, payload)
}
builder.correctErrors()
return builder.build()
}
}
private suspend fun throwDescribeProjectError(context: ExecutionContext, call: HttpCall): kotlin.Nothing {
val payload = call.response.body.readAll()
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 DataBrewException("Failed to parse response as 'restJson1' error", ex).also {
setAseErrorMetadata(it, wrappedCall.response, null)
}
}
val ex = when(errorDetails.code) {
"ResourceNotFoundException" -> ResourceNotFoundExceptionDeserializer().deserialize(context, wrappedCall)
"ValidationException" -> ValidationExceptionDeserializer().deserialize(context, wrappedCall)
else -> DataBrewException(errorDetails.message)
}
setAseErrorMetadata(ex, wrappedResponse, errorDetails)
throw ex
}
private fun deserializeDescribeProjectOperationBody(builder: DescribeProjectResponse.Builder, payload: ByteArray) {
val deserializer = JsonDeserializer(payload)
val CREATEDATE_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Timestamp, JsonSerialName("CreateDate"))
val CREATEDBY_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("CreatedBy"))
val DATASETNAME_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("DatasetName"))
val LASTMODIFIEDBY_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("LastModifiedBy"))
val LASTMODIFIEDDATE_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Timestamp, JsonSerialName("LastModifiedDate"))
val NAME_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("Name"))
val OPENDATE_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Timestamp, JsonSerialName("OpenDate"))
val OPENEDBY_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("OpenedBy"))
val RECIPENAME_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("RecipeName"))
val RESOURCEARN_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("ResourceArn"))
val ROLEARN_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("RoleArn"))
val SAMPLE_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Struct, JsonSerialName("Sample"))
val SESSIONSTATUS_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Enum, JsonSerialName("SessionStatus"))
val TAGS_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Map, JsonSerialName("Tags"))
val OBJ_DESCRIPTOR = SdkObjectDescriptor.build {
field(CREATEDATE_DESCRIPTOR)
field(CREATEDBY_DESCRIPTOR)
field(DATASETNAME_DESCRIPTOR)
field(LASTMODIFIEDBY_DESCRIPTOR)
field(LASTMODIFIEDDATE_DESCRIPTOR)
field(NAME_DESCRIPTOR)
field(OPENDATE_DESCRIPTOR)
field(OPENEDBY_DESCRIPTOR)
field(RECIPENAME_DESCRIPTOR)
field(RESOURCEARN_DESCRIPTOR)
field(ROLEARN_DESCRIPTOR)
field(SAMPLE_DESCRIPTOR)
field(SESSIONSTATUS_DESCRIPTOR)
field(TAGS_DESCRIPTOR)
}
deserializer.deserializeStruct(OBJ_DESCRIPTOR) {
loop@while (true) {
when (findNextFieldIndex()) {
CREATEDATE_DESCRIPTOR.index -> builder.createDate = deserializeString().let { Instant.fromEpochSeconds(it) }
CREATEDBY_DESCRIPTOR.index -> builder.createdBy = deserializeString()
DATASETNAME_DESCRIPTOR.index -> builder.datasetName = deserializeString()
LASTMODIFIEDBY_DESCRIPTOR.index -> builder.lastModifiedBy = deserializeString()
LASTMODIFIEDDATE_DESCRIPTOR.index -> builder.lastModifiedDate = deserializeString().let { Instant.fromEpochSeconds(it) }
NAME_DESCRIPTOR.index -> builder.name = deserializeString()
OPENDATE_DESCRIPTOR.index -> builder.openDate = deserializeString().let { Instant.fromEpochSeconds(it) }
OPENEDBY_DESCRIPTOR.index -> builder.openedBy = deserializeString()
RECIPENAME_DESCRIPTOR.index -> builder.recipeName = deserializeString()
RESOURCEARN_DESCRIPTOR.index -> builder.resourceArn = deserializeString()
ROLEARN_DESCRIPTOR.index -> builder.roleArn = deserializeString()
SAMPLE_DESCRIPTOR.index -> builder.sample = deserializeSampleDocument(deserializer)
SESSIONSTATUS_DESCRIPTOR.index -> builder.sessionStatus = deserializeString().let { SessionStatus.fromValue(it) }
TAGS_DESCRIPTOR.index -> builder.tags =
deserializer.deserializeMap(TAGS_DESCRIPTOR) {
val map0 = mutableMapOf()
while (hasNextEntry()) {
val k0 = key()
val v0 = if (nextHasValue()) { deserializeString() } else { deserializeNull(); continue }
map0[k0] = v0
}
map0
}
null -> break@loop
else -> skipValue()
}
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy