commonMain.aws.sdk.kotlin.services.glacier.transform.ProvisionedCapacityDescriptionDocumentDeserializer.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of glacier-jvm Show documentation
Show all versions of glacier-jvm Show documentation
The AWS Kotlin client for Glacier
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.glacier.transform
import aws.sdk.kotlin.services.glacier.model.ProvisionedCapacityDescription
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 deserializeProvisionedCapacityDescriptionDocument(deserializer: Deserializer): ProvisionedCapacityDescription {
val builder = ProvisionedCapacityDescription.Builder()
val CAPACITYID_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("CapacityId"))
val EXPIRATIONDATE_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("ExpirationDate"))
val STARTDATE_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("StartDate"))
val OBJ_DESCRIPTOR = SdkObjectDescriptor.build {
field(CAPACITYID_DESCRIPTOR)
field(EXPIRATIONDATE_DESCRIPTOR)
field(STARTDATE_DESCRIPTOR)
}
deserializer.deserializeStruct(OBJ_DESCRIPTOR) {
loop@while (true) {
when (findNextFieldIndex()) {
CAPACITYID_DESCRIPTOR.index -> builder.capacityId = deserializeString()
EXPIRATIONDATE_DESCRIPTOR.index -> builder.expirationDate = deserializeString()
STARTDATE_DESCRIPTOR.index -> builder.startDate = deserializeString()
null -> break@loop
else -> skipValue()
}
}
}
return builder.build()
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy