commonMain.aws.sdk.kotlin.services.nimble.serde.StudioComponentConfigurationDocumentDeserializer.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of nimble-jvm Show documentation
Show all versions of nimble-jvm Show documentation
The AWS SDK for Kotlin client for nimble
The newest version!
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.nimble.serde
import aws.sdk.kotlin.services.nimble.model.StudioComponentConfiguration
import aws.smithy.kotlin.runtime.serde.DeserializationException
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.IgnoreKey
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 deserializeStudioComponentConfigurationDocument(deserializer: Deserializer): StudioComponentConfiguration {
var value: StudioComponentConfiguration? = null
val ACTIVEDIRECTORYCONFIGURATION_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Struct, JsonSerialName("activeDirectoryConfiguration"))
val COMPUTEFARMCONFIGURATION_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Struct, JsonSerialName("computeFarmConfiguration"))
val LICENSESERVICECONFIGURATION_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Struct, JsonSerialName("licenseServiceConfiguration"))
val SHAREDFILESYSTEMCONFIGURATION_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Struct, JsonSerialName("sharedFileSystemConfiguration"))
val OBJ_DESCRIPTOR = SdkObjectDescriptor.build {
trait(IgnoreKey("__type"))
field(ACTIVEDIRECTORYCONFIGURATION_DESCRIPTOR)
field(COMPUTEFARMCONFIGURATION_DESCRIPTOR)
field(LICENSESERVICECONFIGURATION_DESCRIPTOR)
field(SHAREDFILESYSTEMCONFIGURATION_DESCRIPTOR)
}
deserializer.deserializeStruct(OBJ_DESCRIPTOR) {
loop@while(true) {
when(findNextFieldIndex()) {
ACTIVEDIRECTORYCONFIGURATION_DESCRIPTOR.index -> value = StudioComponentConfiguration.ActiveDirectoryConfiguration(deserializeActiveDirectoryConfigurationDocument(deserializer))
COMPUTEFARMCONFIGURATION_DESCRIPTOR.index -> value = StudioComponentConfiguration.ComputeFarmConfiguration(deserializeComputeFarmConfigurationDocument(deserializer))
LICENSESERVICECONFIGURATION_DESCRIPTOR.index -> value = StudioComponentConfiguration.LicenseServiceConfiguration(deserializeLicenseServiceConfigurationDocument(deserializer))
SHAREDFILESYSTEMCONFIGURATION_DESCRIPTOR.index -> value = StudioComponentConfiguration.SharedFileSystemConfiguration(deserializeSharedFileSystemConfigurationDocument(deserializer))
null -> break@loop
else -> value = StudioComponentConfiguration.SdkUnknown.also { skipValue() }
}
}
}
return value ?: throw DeserializationException("Deserialized union value unexpectedly null: StudioComponentConfiguration")
}