commonMain.aws.sdk.kotlin.services.applicationautoscaling.serde.TargetTrackingScalingPolicyConfigurationDocumentDeserializer.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of applicationautoscaling-jvm Show documentation
Show all versions of applicationautoscaling-jvm Show documentation
The AWS Kotlin client for Application Auto Scaling
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.applicationautoscaling.serde
import aws.sdk.kotlin.services.applicationautoscaling.model.TargetTrackingScalingPolicyConfiguration
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 deserializeTargetTrackingScalingPolicyConfigurationDocument(deserializer: Deserializer): TargetTrackingScalingPolicyConfiguration {
val builder = TargetTrackingScalingPolicyConfiguration.Builder()
val CUSTOMIZEDMETRICSPECIFICATION_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Struct, JsonSerialName("CustomizedMetricSpecification"))
val DISABLESCALEIN_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Boolean, JsonSerialName("DisableScaleIn"))
val PREDEFINEDMETRICSPECIFICATION_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Struct, JsonSerialName("PredefinedMetricSpecification"))
val SCALEINCOOLDOWN_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Integer, JsonSerialName("ScaleInCooldown"))
val SCALEOUTCOOLDOWN_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Integer, JsonSerialName("ScaleOutCooldown"))
val TARGETVALUE_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Double, JsonSerialName("TargetValue"))
val OBJ_DESCRIPTOR = SdkObjectDescriptor.build {
field(CUSTOMIZEDMETRICSPECIFICATION_DESCRIPTOR)
field(DISABLESCALEIN_DESCRIPTOR)
field(PREDEFINEDMETRICSPECIFICATION_DESCRIPTOR)
field(SCALEINCOOLDOWN_DESCRIPTOR)
field(SCALEOUTCOOLDOWN_DESCRIPTOR)
field(TARGETVALUE_DESCRIPTOR)
}
deserializer.deserializeStruct(OBJ_DESCRIPTOR) {
loop@while (true) {
when (findNextFieldIndex()) {
CUSTOMIZEDMETRICSPECIFICATION_DESCRIPTOR.index -> builder.customizedMetricSpecification = deserializeCustomizedMetricSpecificationDocument(deserializer)
DISABLESCALEIN_DESCRIPTOR.index -> builder.disableScaleIn = deserializeBoolean()
PREDEFINEDMETRICSPECIFICATION_DESCRIPTOR.index -> builder.predefinedMetricSpecification = deserializePredefinedMetricSpecificationDocument(deserializer)
SCALEINCOOLDOWN_DESCRIPTOR.index -> builder.scaleInCooldown = deserializeInt()
SCALEOUTCOOLDOWN_DESCRIPTOR.index -> builder.scaleOutCooldown = deserializeInt()
TARGETVALUE_DESCRIPTOR.index -> builder.targetValue = deserializeDouble()
null -> break@loop
else -> skipValue()
}
}
}
builder.correctErrors()
return builder.build()
}