commonMain.aws.sdk.kotlin.services.codestarconnections.serde.ConnectionDocumentDeserializer.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of codestarconnections-jvm Show documentation
Show all versions of codestarconnections-jvm Show documentation
The AWS SDK for Kotlin client for CodeStar connections
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.codestarconnections.serde
import aws.sdk.kotlin.services.codestarconnections.model.Connection
import aws.sdk.kotlin.services.codestarconnections.model.ConnectionStatus
import aws.sdk.kotlin.services.codestarconnections.model.ProviderType
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 deserializeConnectionDocument(deserializer: Deserializer): Connection {
val builder = Connection.Builder()
val CONNECTIONARN_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("ConnectionArn"))
val CONNECTIONNAME_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("ConnectionName"))
val CONNECTIONSTATUS_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Enum, JsonSerialName("ConnectionStatus"))
val HOSTARN_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("HostArn"))
val OWNERACCOUNTID_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("OwnerAccountId"))
val PROVIDERTYPE_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Enum, JsonSerialName("ProviderType"))
val OBJ_DESCRIPTOR = SdkObjectDescriptor.build {
field(CONNECTIONARN_DESCRIPTOR)
field(CONNECTIONNAME_DESCRIPTOR)
field(CONNECTIONSTATUS_DESCRIPTOR)
field(HOSTARN_DESCRIPTOR)
field(OWNERACCOUNTID_DESCRIPTOR)
field(PROVIDERTYPE_DESCRIPTOR)
}
deserializer.deserializeStruct(OBJ_DESCRIPTOR) {
loop@while (true) {
when (findNextFieldIndex()) {
CONNECTIONARN_DESCRIPTOR.index -> builder.connectionArn = deserializeString()
CONNECTIONNAME_DESCRIPTOR.index -> builder.connectionName = deserializeString()
CONNECTIONSTATUS_DESCRIPTOR.index -> builder.connectionStatus = deserializeString().let { ConnectionStatus.fromValue(it) }
HOSTARN_DESCRIPTOR.index -> builder.hostArn = deserializeString()
OWNERACCOUNTID_DESCRIPTOR.index -> builder.ownerAccountId = deserializeString()
PROVIDERTYPE_DESCRIPTOR.index -> builder.providerType = deserializeString().let { ProviderType.fromValue(it) }
null -> break@loop
else -> skipValue()
}
}
}
builder.correctErrors()
return builder.build()
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy