commonMain.aws.sdk.kotlin.services.codecatalyst.serde.UserIdentityDocumentDeserializer.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of codecatalyst-jvm Show documentation
Show all versions of codecatalyst-jvm Show documentation
The AWS SDK for Kotlin client for CodeCatalyst
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.codecatalyst.serde
import aws.sdk.kotlin.services.codecatalyst.model.UserIdentity
import aws.sdk.kotlin.services.codecatalyst.model.UserType
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 deserializeUserIdentityDocument(deserializer: Deserializer): UserIdentity {
val builder = UserIdentity.Builder()
val AWSACCOUNTID_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("awsAccountId"))
val PRINCIPALID_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("principalId"))
val USERNAME_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("userName"))
val USERTYPE_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("userType"))
val OBJ_DESCRIPTOR = SdkObjectDescriptor.build {
field(AWSACCOUNTID_DESCRIPTOR)
field(PRINCIPALID_DESCRIPTOR)
field(USERNAME_DESCRIPTOR)
field(USERTYPE_DESCRIPTOR)
}
deserializer.deserializeStruct(OBJ_DESCRIPTOR) {
loop@while (true) {
when (findNextFieldIndex()) {
AWSACCOUNTID_DESCRIPTOR.index -> builder.awsAccountId = deserializeString()
PRINCIPALID_DESCRIPTOR.index -> builder.principalId = deserializeString()
USERNAME_DESCRIPTOR.index -> builder.userName = deserializeString()
USERTYPE_DESCRIPTOR.index -> builder.userType = deserializeString().let { UserType.fromValue(it) }
null -> break@loop
else -> skipValue()
}
}
}
builder.correctErrors()
return builder.build()
}