commonMain.aws.sdk.kotlin.services.servicequotas.serde.ServiceQuotaIncreaseRequestInTemplateDocumentDeserializer.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of servicequotas-jvm Show documentation
Show all versions of servicequotas-jvm Show documentation
The AWS SDK for Kotlin client for Service Quotas
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.servicequotas.serde
import aws.sdk.kotlin.services.servicequotas.model.ServiceQuotaIncreaseRequestInTemplate
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 deserializeServiceQuotaIncreaseRequestInTemplateDocument(deserializer: Deserializer): ServiceQuotaIncreaseRequestInTemplate {
val builder = ServiceQuotaIncreaseRequestInTemplate.Builder()
val AWSREGION_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("AwsRegion"))
val DESIREDVALUE_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Double, JsonSerialName("DesiredValue"))
val GLOBALQUOTA_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Boolean, JsonSerialName("GlobalQuota"))
val QUOTACODE_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("QuotaCode"))
val QUOTANAME_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("QuotaName"))
val SERVICECODE_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("ServiceCode"))
val SERVICENAME_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("ServiceName"))
val UNIT_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("Unit"))
val OBJ_DESCRIPTOR = SdkObjectDescriptor.build {
field(AWSREGION_DESCRIPTOR)
field(DESIREDVALUE_DESCRIPTOR)
field(GLOBALQUOTA_DESCRIPTOR)
field(QUOTACODE_DESCRIPTOR)
field(QUOTANAME_DESCRIPTOR)
field(SERVICECODE_DESCRIPTOR)
field(SERVICENAME_DESCRIPTOR)
field(UNIT_DESCRIPTOR)
}
deserializer.deserializeStruct(OBJ_DESCRIPTOR) {
loop@while (true) {
when (findNextFieldIndex()) {
AWSREGION_DESCRIPTOR.index -> builder.awsRegion = deserializeString()
DESIREDVALUE_DESCRIPTOR.index -> builder.desiredValue = deserializeDouble()
GLOBALQUOTA_DESCRIPTOR.index -> builder.globalQuota = deserializeBoolean()
QUOTACODE_DESCRIPTOR.index -> builder.quotaCode = deserializeString()
QUOTANAME_DESCRIPTOR.index -> builder.quotaName = deserializeString()
SERVICECODE_DESCRIPTOR.index -> builder.serviceCode = deserializeString()
SERVICENAME_DESCRIPTOR.index -> builder.serviceName = deserializeString()
UNIT_DESCRIPTOR.index -> builder.unit = deserializeString()
null -> break@loop
else -> skipValue()
}
}
}
builder.correctErrors()
return builder.build()
}