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

commonMain.aws.sdk.kotlin.services.autoscaling.serde.CustomizedMetricSpecificationDocumentDeserializer.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.autoscaling.serde

import aws.sdk.kotlin.services.autoscaling.model.CustomizedMetricSpecification
import aws.sdk.kotlin.services.autoscaling.model.MetricStatistic
import aws.smithy.kotlin.runtime.serde.getOrDeserializeErr
import aws.smithy.kotlin.runtime.serde.parse
import aws.smithy.kotlin.runtime.serde.xml.XmlTagReader
import aws.smithy.kotlin.runtime.serde.xml.tryData

internal fun deserializeCustomizedMetricSpecificationDocument(reader: XmlTagReader): CustomizedMetricSpecification {
    val builder = CustomizedMetricSpecification.Builder()

    loop@while (true) {
        val curr = reader.nextTag() ?: break@loop
        when (curr.tagName) {
            // MetricName com.amazonaws.autoscaling#CustomizedMetricSpecification$MetricName
            "MetricName" -> builder.metricName = curr.tryData()
                .getOrDeserializeErr { "expected (string: `com.amazonaws.autoscaling#MetricName`)" }
            // Namespace com.amazonaws.autoscaling#CustomizedMetricSpecification$Namespace
            "Namespace" -> builder.namespace = curr.tryData()
                .getOrDeserializeErr { "expected (string: `com.amazonaws.autoscaling#MetricNamespace`)" }
            // Dimensions com.amazonaws.autoscaling#CustomizedMetricSpecification$Dimensions
            "Dimensions" -> builder.dimensions = deserializeMetricDimensionsShape(curr)
            // Statistic com.amazonaws.autoscaling#CustomizedMetricSpecification$Statistic
            "Statistic" -> builder.statistic = curr.tryData()
                .parse { MetricStatistic.fromValue(it) }
                .getOrDeserializeErr { "expected (enum: `com.amazonaws.autoscaling#MetricStatistic`)" }
            // Unit com.amazonaws.autoscaling#CustomizedMetricSpecification$Unit
            "Unit" -> builder.unit = curr.tryData()
                .getOrDeserializeErr { "expected (string: `com.amazonaws.autoscaling#MetricUnit`)" }
            // Metrics com.amazonaws.autoscaling#CustomizedMetricSpecification$Metrics
            "Metrics" -> builder.metrics = deserializeTargetTrackingMetricDataQueriesShape(curr)
            else -> {}
        }
        curr.drop()
    }
    builder.correctErrors()
    return builder.build()
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy