commonMain.aws.sdk.kotlin.services.vpclattice.serde.HealthCheckConfigDocumentDeserializer.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of vpclattice-jvm Show documentation
Show all versions of vpclattice-jvm Show documentation
The AWS SDK for Kotlin client for VPC Lattice
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.vpclattice.serde
import aws.sdk.kotlin.services.vpclattice.model.HealthCheckConfig
import aws.sdk.kotlin.services.vpclattice.model.HealthCheckProtocolVersion
import aws.sdk.kotlin.services.vpclattice.model.TargetGroupProtocol
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 deserializeHealthCheckConfigDocument(deserializer: Deserializer): HealthCheckConfig {
val builder = HealthCheckConfig.Builder()
val ENABLED_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Boolean, JsonSerialName("enabled"))
val HEALTHCHECKINTERVALSECONDS_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Integer, JsonSerialName("healthCheckIntervalSeconds"))
val HEALTHCHECKTIMEOUTSECONDS_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Integer, JsonSerialName("healthCheckTimeoutSeconds"))
val HEALTHYTHRESHOLDCOUNT_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Integer, JsonSerialName("healthyThresholdCount"))
val MATCHER_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Struct, JsonSerialName("matcher"))
val PATH_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("path"))
val PORT_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Integer, JsonSerialName("port"))
val PROTOCOL_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("protocol"))
val PROTOCOLVERSION_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("protocolVersion"))
val UNHEALTHYTHRESHOLDCOUNT_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Integer, JsonSerialName("unhealthyThresholdCount"))
val OBJ_DESCRIPTOR = SdkObjectDescriptor.build {
field(ENABLED_DESCRIPTOR)
field(HEALTHCHECKINTERVALSECONDS_DESCRIPTOR)
field(HEALTHCHECKTIMEOUTSECONDS_DESCRIPTOR)
field(HEALTHYTHRESHOLDCOUNT_DESCRIPTOR)
field(MATCHER_DESCRIPTOR)
field(PATH_DESCRIPTOR)
field(PORT_DESCRIPTOR)
field(PROTOCOL_DESCRIPTOR)
field(PROTOCOLVERSION_DESCRIPTOR)
field(UNHEALTHYTHRESHOLDCOUNT_DESCRIPTOR)
}
deserializer.deserializeStruct(OBJ_DESCRIPTOR) {
loop@while (true) {
when (findNextFieldIndex()) {
ENABLED_DESCRIPTOR.index -> builder.enabled = deserializeBoolean()
HEALTHCHECKINTERVALSECONDS_DESCRIPTOR.index -> builder.healthCheckIntervalSeconds = deserializeInt()
HEALTHCHECKTIMEOUTSECONDS_DESCRIPTOR.index -> builder.healthCheckTimeoutSeconds = deserializeInt()
HEALTHYTHRESHOLDCOUNT_DESCRIPTOR.index -> builder.healthyThresholdCount = deserializeInt()
MATCHER_DESCRIPTOR.index -> builder.matcher = deserializeMatcherDocument(deserializer)
PATH_DESCRIPTOR.index -> builder.path = deserializeString()
PORT_DESCRIPTOR.index -> builder.port = deserializeInt()
PROTOCOL_DESCRIPTOR.index -> builder.protocol = deserializeString().let { TargetGroupProtocol.fromValue(it) }
PROTOCOLVERSION_DESCRIPTOR.index -> builder.protocolVersion = deserializeString().let { HealthCheckProtocolVersion.fromValue(it) }
UNHEALTHYTHRESHOLDCOUNT_DESCRIPTOR.index -> builder.unhealthyThresholdCount = deserializeInt()
null -> break@loop
else -> skipValue()
}
}
}
builder.correctErrors()
return builder.build()
}