commonMain.aws.sdk.kotlin.services.glue.serde.AuthConfigurationDocumentDeserializer.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of glue-jvm Show documentation
Show all versions of glue-jvm Show documentation
The AWS SDK for Kotlin client for Glue
The newest version!
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.glue.serde
import aws.sdk.kotlin.services.glue.model.AuthConfiguration
import aws.sdk.kotlin.services.glue.model.Property
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
import kotlin.collections.mutableMapOf
internal fun deserializeAuthConfigurationDocument(deserializer: Deserializer): AuthConfiguration {
val builder = AuthConfiguration.Builder()
val AUTHENTICATIONTYPE_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Struct, JsonSerialName("AuthenticationType"))
val BASICAUTHENTICATIONPROPERTIES_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Map, JsonSerialName("BasicAuthenticationProperties"))
val CUSTOMAUTHENTICATIONPROPERTIES_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Map, JsonSerialName("CustomAuthenticationProperties"))
val OAUTH2PROPERTIES_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Map, JsonSerialName("OAuth2Properties"))
val SECRETARN_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Struct, JsonSerialName("SecretArn"))
val OBJ_DESCRIPTOR = SdkObjectDescriptor.build {
field(AUTHENTICATIONTYPE_DESCRIPTOR)
field(BASICAUTHENTICATIONPROPERTIES_DESCRIPTOR)
field(CUSTOMAUTHENTICATIONPROPERTIES_DESCRIPTOR)
field(OAUTH2PROPERTIES_DESCRIPTOR)
field(SECRETARN_DESCRIPTOR)
}
deserializer.deserializeStruct(OBJ_DESCRIPTOR) {
loop@while (true) {
when (findNextFieldIndex()) {
AUTHENTICATIONTYPE_DESCRIPTOR.index -> builder.authenticationType = deserializePropertyDocument(deserializer)
BASICAUTHENTICATIONPROPERTIES_DESCRIPTOR.index -> builder.basicAuthenticationProperties =
deserializer.deserializeMap(BASICAUTHENTICATIONPROPERTIES_DESCRIPTOR) {
val map0 = mutableMapOf()
while (hasNextEntry()) {
val k0 = key()
val v0 = if (nextHasValue()) { deserializePropertyDocument(deserializer) } else { deserializeNull(); continue }
map0[k0] = v0
}
map0
}
CUSTOMAUTHENTICATIONPROPERTIES_DESCRIPTOR.index -> builder.customAuthenticationProperties =
deserializer.deserializeMap(CUSTOMAUTHENTICATIONPROPERTIES_DESCRIPTOR) {
val map0 = mutableMapOf()
while (hasNextEntry()) {
val k0 = key()
val v0 = if (nextHasValue()) { deserializePropertyDocument(deserializer) } else { deserializeNull(); continue }
map0[k0] = v0
}
map0
}
OAUTH2PROPERTIES_DESCRIPTOR.index -> builder.oAuth2Properties =
deserializer.deserializeMap(OAUTH2PROPERTIES_DESCRIPTOR) {
val map0 = mutableMapOf()
while (hasNextEntry()) {
val k0 = key()
val v0 = if (nextHasValue()) { deserializePropertyDocument(deserializer) } else { deserializeNull(); continue }
map0[k0] = v0
}
map0
}
SECRETARN_DESCRIPTOR.index -> builder.secretArn = deserializePropertyDocument(deserializer)
null -> break@loop
else -> skipValue()
}
}
}
builder.correctErrors()
return builder.build()
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy