
commonMain.aws.sdk.kotlin.services.mgn.transform.ParticipatingServerDocumentDeserializer.kt Maven / Gradle / Ivy
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.mgn.transform
import aws.sdk.kotlin.services.mgn.model.LaunchStatus
import aws.sdk.kotlin.services.mgn.model.ParticipatingServer
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 deserializeParticipatingServerDocument(deserializer: Deserializer): ParticipatingServer {
val builder = ParticipatingServer.Builder()
val LAUNCHSTATUS_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("launchStatus"))
val LAUNCHEDEC2INSTANCEID_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("launchedEc2InstanceID"))
val POSTLAUNCHACTIONSSTATUS_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Struct, JsonSerialName("postLaunchActionsStatus"))
val SOURCESERVERID_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("sourceServerID"))
val OBJ_DESCRIPTOR = SdkObjectDescriptor.build {
field(LAUNCHSTATUS_DESCRIPTOR)
field(LAUNCHEDEC2INSTANCEID_DESCRIPTOR)
field(POSTLAUNCHACTIONSSTATUS_DESCRIPTOR)
field(SOURCESERVERID_DESCRIPTOR)
}
deserializer.deserializeStruct(OBJ_DESCRIPTOR) {
loop@while (true) {
when (findNextFieldIndex()) {
LAUNCHSTATUS_DESCRIPTOR.index -> builder.launchStatus = deserializeString().let { LaunchStatus.fromValue(it) }
LAUNCHEDEC2INSTANCEID_DESCRIPTOR.index -> builder.launchedEc2InstanceId = deserializeString()
POSTLAUNCHACTIONSSTATUS_DESCRIPTOR.index -> builder.postLaunchActionsStatus = deserializePostLaunchActionsStatusDocument(deserializer)
SOURCESERVERID_DESCRIPTOR.index -> builder.sourceServerId = deserializeString()
null -> break@loop
else -> skipValue()
}
}
}
return builder.build()
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy