commonMain.aws.sdk.kotlin.services.mediapackage.serde.RotateIngestEndpointCredentialsOperationDeserializer.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.EgressAccessLogs
import aws.sdk.kotlin.services.mediapackage.model.HlsIngest
import aws.sdk.kotlin.services.mediapackage.model.IngressAccessLogs
import aws.sdk.kotlin.services.mediapackage.model.MediaPackageException
import aws.sdk.kotlin.services.mediapackage.model.RotateIngestEndpointCredentialsResponse
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.mutableMapOf
internal class RotateIngestEndpointCredentialsOperationDeserializer: HttpDeserializer.NonStreaming {
override fun deserialize(context: ExecutionContext, call: HttpCall, payload: ByteArray?): RotateIngestEndpointCredentialsResponse {
val response = call.response
if (!response.status.isSuccess()) {
throwRotateIngestEndpointCredentialsError(context, call, payload)
}
val builder = RotateIngestEndpointCredentialsResponse.Builder()
if (payload != null) {
deserializeRotateIngestEndpointCredentialsOperationBody(builder, payload)
}
builder.correctErrors()
return builder.build()
}
}
private fun throwRotateIngestEndpointCredentialsError(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 deserializeRotateIngestEndpointCredentialsOperationBody(builder: RotateIngestEndpointCredentialsResponse.Builder, payload: ByteArray) {
val deserializer = JsonDeserializer(payload)
val ARN_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("arn"))
val CREATEDAT_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("createdAt"))
val DESCRIPTION_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("description"))
val EGRESSACCESSLOGS_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Struct, JsonSerialName("egressAccessLogs"))
val HLSINGEST_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Struct, JsonSerialName("hlsIngest"))
val ID_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("id"))
val INGRESSACCESSLOGS_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Struct, JsonSerialName("ingressAccessLogs"))
val TAGS_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Map, JsonSerialName("tags"))
val OBJ_DESCRIPTOR = SdkObjectDescriptor.build {
field(ARN_DESCRIPTOR)
field(CREATEDAT_DESCRIPTOR)
field(DESCRIPTION_DESCRIPTOR)
field(EGRESSACCESSLOGS_DESCRIPTOR)
field(HLSINGEST_DESCRIPTOR)
field(ID_DESCRIPTOR)
field(INGRESSACCESSLOGS_DESCRIPTOR)
field(TAGS_DESCRIPTOR)
}
deserializer.deserializeStruct(OBJ_DESCRIPTOR) {
loop@while (true) {
when (findNextFieldIndex()) {
ARN_DESCRIPTOR.index -> builder.arn = deserializeString()
CREATEDAT_DESCRIPTOR.index -> builder.createdAt = deserializeString()
DESCRIPTION_DESCRIPTOR.index -> builder.description = deserializeString()
EGRESSACCESSLOGS_DESCRIPTOR.index -> builder.egressAccessLogs = deserializeEgressAccessLogsDocument(deserializer)
HLSINGEST_DESCRIPTOR.index -> builder.hlsIngest = deserializeHlsIngestDocument(deserializer)
ID_DESCRIPTOR.index -> builder.id = deserializeString()
INGRESSACCESSLOGS_DESCRIPTOR.index -> builder.ingressAccessLogs = deserializeIngressAccessLogsDocument(deserializer)
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()
}
}
}
}