commonMain.aws.sdk.kotlin.services.codebuild.serde.TargetTrackingScalingConfigurationDocumentDeserializer.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of codebuild-jvm Show documentation
Show all versions of codebuild-jvm Show documentation
The AWS SDK for Kotlin client for CodeBuild
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.codebuild.serde
import aws.sdk.kotlin.services.codebuild.model.FleetScalingMetricType
import aws.sdk.kotlin.services.codebuild.model.TargetTrackingScalingConfiguration
import aws.smithy.kotlin.runtime.serde.Deserializer
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
internal fun deserializeTargetTrackingScalingConfigurationDocument(deserializer: Deserializer): TargetTrackingScalingConfiguration {
val builder = TargetTrackingScalingConfiguration.Builder()
val METRICTYPE_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Enum, JsonSerialName("metricType"))
val TARGETVALUE_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Double, JsonSerialName("targetValue"))
val OBJ_DESCRIPTOR = SdkObjectDescriptor.build {
field(METRICTYPE_DESCRIPTOR)
field(TARGETVALUE_DESCRIPTOR)
}
deserializer.deserializeStruct(OBJ_DESCRIPTOR) {
loop@while (true) {
when (findNextFieldIndex()) {
METRICTYPE_DESCRIPTOR.index -> builder.metricType = deserializeString().let { FleetScalingMetricType.fromValue(it) }
TARGETVALUE_DESCRIPTOR.index -> builder.targetValue = deserializeDouble()
null -> break@loop
else -> skipValue()
}
}
}
builder.correctErrors()
return builder.build()
}