All Downloads are FREE. Search and download functionalities are using the official Maven repository.

commonMain.aws.sdk.kotlin.services.cloudwatch.serde.GetMetricStreamOperationDeserializer.kt Maven / Gradle / Ivy

There is a newer version: 1.3.76
Show newest version
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!

package aws.sdk.kotlin.services.cloudwatch.serde

import aws.sdk.kotlin.services.cloudwatch.model.CloudWatchException
import aws.sdk.kotlin.services.cloudwatch.model.GetMetricStreamResponse
import aws.sdk.kotlin.services.cloudwatch.model.MetricStreamFilter
import aws.sdk.kotlin.services.cloudwatch.model.MetricStreamOutputFormat
import aws.sdk.kotlin.services.cloudwatch.model.MetricStreamStatisticsConfiguration
import aws.smithy.kotlin.runtime.awsprotocol.setAseErrorMetadata
import aws.smithy.kotlin.runtime.awsprotocol.withPayload
import aws.smithy.kotlin.runtime.awsprotocol.xml.parseRestXmlErrorResponseNoSuspend
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.getOrDeserializeErr
import aws.smithy.kotlin.runtime.serde.parse
import aws.smithy.kotlin.runtime.serde.parseBoolean
import aws.smithy.kotlin.runtime.serde.parseTimestamp
import aws.smithy.kotlin.runtime.serde.xml.tryData
import aws.smithy.kotlin.runtime.serde.xml.xmlTagReader
import aws.smithy.kotlin.runtime.time.Instant
import aws.smithy.kotlin.runtime.time.TimestampFormat


internal class GetMetricStreamOperationDeserializer: HttpDeserializer.NonStreaming {

    override fun deserialize(context: ExecutionContext, call: HttpCall, payload: ByteArray?): GetMetricStreamResponse {
        val response = call.response
        if (!response.status.isSuccess()) {
            throwGetMetricStreamError(context, call, payload)
        }
        val builder = GetMetricStreamResponse.Builder()

        if (payload != null) {
            deserializeGetMetricStreamOperationBody(builder, payload)
        }
        builder.correctErrors()
        return builder.build()
    }
}

private fun throwGetMetricStreamError(context: ExecutionContext, call: HttpCall, payload: ByteArray?): kotlin.Nothing {
    val wrappedResponse = call.response.withPayload(payload)
    val wrappedCall = call.copy(response = wrappedResponse)

    val errorDetails = try {
        checkNotNull(payload){ "unable to parse error from empty response" }
        parseRestXmlErrorResponseNoSuspend(payload)
    } catch (ex: Exception) {
        throw CloudWatchException("Failed to parse response as 'awsQuery' error", ex).also {
            setAseErrorMetadata(it, wrappedCall.response, null)
        }
    }

    val ex = when(errorDetails.code) {
        "ResourceNotFoundException" -> ResourceNotFoundExceptionDeserializer().deserialize(context, wrappedCall, payload)
        "InvalidParameterCombination" -> InvalidParameterCombinationExceptionDeserializer().deserialize(context, wrappedCall, payload)
        "InvalidParameterValue" -> InvalidParameterValueExceptionDeserializer().deserialize(context, wrappedCall, payload)
        "InternalServiceError" -> InternalServiceFaultDeserializer().deserialize(context, wrappedCall, payload)
        "MissingParameter" -> MissingRequiredParameterExceptionDeserializer().deserialize(context, wrappedCall, payload)
        else -> CloudWatchException(errorDetails.message)
    }

    setAseErrorMetadata(ex, wrappedResponse, errorDetails)
    throw ex
}

private fun deserializeGetMetricStreamOperationBody(builder: GetMetricStreamResponse.Builder, payload: ByteArray) {
    val root = xmlTagReader(payload)
    val unwrapped = unwrapAwsQueryResponse(root, "GetMetricStream")

    loop@while (true) {
        val curr = unwrapped.nextTag() ?: break@loop
        when (curr.tagName) {
            // Arn com.amazonaws.cloudwatch#GetMetricStreamOutput$Arn
            "Arn" -> builder.arn = curr.tryData()
                .getOrDeserializeErr { "expected (string: `com.amazonaws.cloudwatch#AmazonResourceName`)" }
            // CreationDate com.amazonaws.cloudwatch#GetMetricStreamOutput$CreationDate
            "CreationDate" -> builder.creationDate = curr.tryData()
                .parseTimestamp(TimestampFormat.ISO_8601)
                .getOrDeserializeErr { "expected (timestamp: `com.amazonaws.cloudwatch#Timestamp`)" }
            // ExcludeFilters com.amazonaws.cloudwatch#GetMetricStreamOutput$ExcludeFilters
            "ExcludeFilters" -> builder.excludeFilters = deserializeMetricStreamFiltersShape(curr)
            // FirehoseArn com.amazonaws.cloudwatch#GetMetricStreamOutput$FirehoseArn
            "FirehoseArn" -> builder.firehoseArn = curr.tryData()
                .getOrDeserializeErr { "expected (string: `com.amazonaws.cloudwatch#AmazonResourceName`)" }
            // IncludeFilters com.amazonaws.cloudwatch#GetMetricStreamOutput$IncludeFilters
            "IncludeFilters" -> builder.includeFilters = deserializeMetricStreamFiltersShape(curr)
            // IncludeLinkedAccountsMetrics com.amazonaws.cloudwatch#GetMetricStreamOutput$IncludeLinkedAccountsMetrics
            "IncludeLinkedAccountsMetrics" -> builder.includeLinkedAccountsMetrics = curr.tryData()
                .parseBoolean()
                .getOrDeserializeErr { "expected (boolean: `com.amazonaws.cloudwatch#IncludeLinkedAccountsMetrics`)" }
            // LastUpdateDate com.amazonaws.cloudwatch#GetMetricStreamOutput$LastUpdateDate
            "LastUpdateDate" -> builder.lastUpdateDate = curr.tryData()
                .parseTimestamp(TimestampFormat.ISO_8601)
                .getOrDeserializeErr { "expected (timestamp: `com.amazonaws.cloudwatch#Timestamp`)" }
            // Name com.amazonaws.cloudwatch#GetMetricStreamOutput$Name
            "Name" -> builder.name = curr.tryData()
                .getOrDeserializeErr { "expected (string: `com.amazonaws.cloudwatch#MetricStreamName`)" }
            // OutputFormat com.amazonaws.cloudwatch#GetMetricStreamOutput$OutputFormat
            "OutputFormat" -> builder.outputFormat = curr.tryData()
                .parse { MetricStreamOutputFormat.fromValue(it) }
                .getOrDeserializeErr { "expected (enum: `com.amazonaws.cloudwatch#MetricStreamOutputFormat`)" }
            // RoleArn com.amazonaws.cloudwatch#GetMetricStreamOutput$RoleArn
            "RoleArn" -> builder.roleArn = curr.tryData()
                .getOrDeserializeErr { "expected (string: `com.amazonaws.cloudwatch#AmazonResourceName`)" }
            // State com.amazonaws.cloudwatch#GetMetricStreamOutput$State
            "State" -> builder.state = curr.tryData()
                .getOrDeserializeErr { "expected (string: `com.amazonaws.cloudwatch#MetricStreamState`)" }
            // StatisticsConfigurations com.amazonaws.cloudwatch#GetMetricStreamOutput$StatisticsConfigurations
            "StatisticsConfigurations" -> builder.statisticsConfigurations = deserializeMetricStreamStatisticsConfigurationsShape(curr)
            else -> {}
        }
        curr.drop()
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy