commonMain.aws.sdk.kotlin.services.nimble.serde.LaunchProfileDocumentDeserializer.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.LaunchProfile
import aws.sdk.kotlin.services.nimble.model.LaunchProfileState
import aws.sdk.kotlin.services.nimble.model.LaunchProfileStatusCode
import aws.sdk.kotlin.services.nimble.model.ValidationResult
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 aws.smithy.kotlin.runtime.time.Instant
import aws.smithy.kotlin.runtime.time.TimestampFormat
import kotlin.collections.mutableListOf
import kotlin.collections.mutableMapOf
internal fun deserializeLaunchProfileDocument(deserializer: Deserializer): LaunchProfile {
val builder = LaunchProfile.Builder()
val ARN_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("arn"))
val CREATEDAT_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Timestamp, JsonSerialName("createdAt"))
val CREATEDBY_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("createdBy"))
val DESCRIPTION_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("description"))
val EC2SUBNETIDS_DESCRIPTOR = SdkFieldDescriptor(SerialKind.List, JsonSerialName("ec2SubnetIds"))
val LAUNCHPROFILEID_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("launchProfileId"))
val LAUNCHPROFILEPROTOCOLVERSIONS_DESCRIPTOR = SdkFieldDescriptor(SerialKind.List, JsonSerialName("launchProfileProtocolVersions"))
val NAME_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("name"))
val STATE_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Enum, JsonSerialName("state"))
val STATUSCODE_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Enum, JsonSerialName("statusCode"))
val STATUSMESSAGE_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("statusMessage"))
val STREAMCONFIGURATION_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Struct, JsonSerialName("streamConfiguration"))
val STUDIOCOMPONENTIDS_DESCRIPTOR = SdkFieldDescriptor(SerialKind.List, JsonSerialName("studioComponentIds"))
val TAGS_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Map, JsonSerialName("tags"))
val UPDATEDAT_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Timestamp, JsonSerialName("updatedAt"))
val UPDATEDBY_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("updatedBy"))
val VALIDATIONRESULTS_DESCRIPTOR = SdkFieldDescriptor(SerialKind.List, JsonSerialName("validationResults"))
val OBJ_DESCRIPTOR = SdkObjectDescriptor.build {
field(ARN_DESCRIPTOR)
field(CREATEDAT_DESCRIPTOR)
field(CREATEDBY_DESCRIPTOR)
field(DESCRIPTION_DESCRIPTOR)
field(EC2SUBNETIDS_DESCRIPTOR)
field(LAUNCHPROFILEID_DESCRIPTOR)
field(LAUNCHPROFILEPROTOCOLVERSIONS_DESCRIPTOR)
field(NAME_DESCRIPTOR)
field(STATE_DESCRIPTOR)
field(STATUSCODE_DESCRIPTOR)
field(STATUSMESSAGE_DESCRIPTOR)
field(STREAMCONFIGURATION_DESCRIPTOR)
field(STUDIOCOMPONENTIDS_DESCRIPTOR)
field(TAGS_DESCRIPTOR)
field(UPDATEDAT_DESCRIPTOR)
field(UPDATEDBY_DESCRIPTOR)
field(VALIDATIONRESULTS_DESCRIPTOR)
}
deserializer.deserializeStruct(OBJ_DESCRIPTOR) {
loop@while (true) {
when (findNextFieldIndex()) {
ARN_DESCRIPTOR.index -> builder.arn = deserializeString()
CREATEDAT_DESCRIPTOR.index -> builder.createdAt = deserializeInstant(TimestampFormat.ISO_8601)
CREATEDBY_DESCRIPTOR.index -> builder.createdBy = deserializeString()
DESCRIPTION_DESCRIPTOR.index -> builder.description = deserializeString()
EC2SUBNETIDS_DESCRIPTOR.index -> builder.ec2SubnetIds =
deserializer.deserializeList(EC2SUBNETIDS_DESCRIPTOR) {
val col0 = mutableListOf()
while (hasNextElement()) {
val el0 = if (nextHasValue()) { deserializeString() } else { deserializeNull(); continue }
col0.add(el0)
}
col0
}
LAUNCHPROFILEID_DESCRIPTOR.index -> builder.launchProfileId = deserializeString()
LAUNCHPROFILEPROTOCOLVERSIONS_DESCRIPTOR.index -> builder.launchProfileProtocolVersions =
deserializer.deserializeList(LAUNCHPROFILEPROTOCOLVERSIONS_DESCRIPTOR) {
val col0 = mutableListOf()
while (hasNextElement()) {
val el0 = if (nextHasValue()) { deserializeString() } else { deserializeNull(); continue }
col0.add(el0)
}
col0
}
NAME_DESCRIPTOR.index -> builder.name = deserializeString()
STATE_DESCRIPTOR.index -> builder.state = deserializeString().let { LaunchProfileState.fromValue(it) }
STATUSCODE_DESCRIPTOR.index -> builder.statusCode = deserializeString().let { LaunchProfileStatusCode.fromValue(it) }
STATUSMESSAGE_DESCRIPTOR.index -> builder.statusMessage = deserializeString()
STREAMCONFIGURATION_DESCRIPTOR.index -> builder.streamConfiguration = deserializeStreamConfigurationDocument(deserializer)
STUDIOCOMPONENTIDS_DESCRIPTOR.index -> builder.studioComponentIds =
deserializer.deserializeList(STUDIOCOMPONENTIDS_DESCRIPTOR) {
val col0 = mutableListOf()
while (hasNextElement()) {
val el0 = if (nextHasValue()) { deserializeString() } else { deserializeNull(); continue }
col0.add(el0)
}
col0
}
TAGS_DESCRIPTOR.index -> builder.tags =
deserializer.deserializeMap(TAGS_DESCRIPTOR) {
val map0 = mutableMapOf()
while (hasNextEntry()) {
val k0 = key()
val v0 = if (nextHasValue()) { deserializeString() } else { deserializeNull(); continue }
map0[k0] = v0
}
map0
}
UPDATEDAT_DESCRIPTOR.index -> builder.updatedAt = deserializeInstant(TimestampFormat.ISO_8601)
UPDATEDBY_DESCRIPTOR.index -> builder.updatedBy = deserializeString()
VALIDATIONRESULTS_DESCRIPTOR.index -> builder.validationResults =
deserializer.deserializeList(VALIDATIONRESULTS_DESCRIPTOR) {
val col0 = mutableListOf()
while (hasNextElement()) {
val el0 = if (nextHasValue()) { deserializeValidationResultDocument(deserializer) } else { deserializeNull(); continue }
col0.add(el0)
}
col0
}
null -> break@loop
else -> skipValue()
}
}
}
builder.correctErrors()
return builder.build()
}