commonMain.aws.sdk.kotlin.services.glacier.transform.GranteeDocumentDeserializer.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.Grantee
import aws.sdk.kotlin.services.glacier.model.Type
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 deserializeGranteeDocument(deserializer: Deserializer): Grantee {
val builder = Grantee.Builder()
val DISPLAYNAME_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("DisplayName"))
val EMAILADDRESS_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("EmailAddress"))
val ID_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("ID"))
val TYPE_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("Type"))
val URI_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("URI"))
val OBJ_DESCRIPTOR = SdkObjectDescriptor.build {
field(DISPLAYNAME_DESCRIPTOR)
field(EMAILADDRESS_DESCRIPTOR)
field(ID_DESCRIPTOR)
field(TYPE_DESCRIPTOR)
field(URI_DESCRIPTOR)
}
deserializer.deserializeStruct(OBJ_DESCRIPTOR) {
loop@while (true) {
when (findNextFieldIndex()) {
DISPLAYNAME_DESCRIPTOR.index -> builder.displayName = deserializeString()
EMAILADDRESS_DESCRIPTOR.index -> builder.emailAddress = deserializeString()
ID_DESCRIPTOR.index -> builder.id = deserializeString()
TYPE_DESCRIPTOR.index -> builder.type = deserializeString().let { Type.fromValue(it) }
URI_DESCRIPTOR.index -> builder.uri = deserializeString()
null -> break@loop
else -> skipValue()
}
}
}
return builder.build()
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy