All Downloads are FREE. Search and download functionalities are using the official Maven repository.

commonMain.aws.sdk.kotlin.services.vpclattice.serde.ServiceNetworkServiceAssociationSummaryDocumentDeserializer.kt Maven / Gradle / Ivy

There is a newer version: 1.3.77
Show newest version
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!

package aws.sdk.kotlin.services.vpclattice.serde

import aws.sdk.kotlin.services.vpclattice.model.ServiceNetworkServiceAssociationStatus
import aws.sdk.kotlin.services.vpclattice.model.ServiceNetworkServiceAssociationSummary
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

internal fun deserializeServiceNetworkServiceAssociationSummaryDocument(deserializer: Deserializer): ServiceNetworkServiceAssociationSummary {
    val builder = ServiceNetworkServiceAssociationSummary.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 CUSTOMDOMAINNAME_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("customDomainName"))
    val DNSENTRY_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Struct, JsonSerialName("dnsEntry"))
    val ID_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("id"))
    val SERVICEARN_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("serviceArn"))
    val SERVICEID_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("serviceId"))
    val SERVICENAME_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("serviceName"))
    val SERVICENETWORKARN_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("serviceNetworkArn"))
    val SERVICENETWORKID_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("serviceNetworkId"))
    val SERVICENETWORKNAME_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("serviceNetworkName"))
    val STATUS_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("status"))
    val OBJ_DESCRIPTOR = SdkObjectDescriptor.build {
        field(ARN_DESCRIPTOR)
        field(CREATEDAT_DESCRIPTOR)
        field(CREATEDBY_DESCRIPTOR)
        field(CUSTOMDOMAINNAME_DESCRIPTOR)
        field(DNSENTRY_DESCRIPTOR)
        field(ID_DESCRIPTOR)
        field(SERVICEARN_DESCRIPTOR)
        field(SERVICEID_DESCRIPTOR)
        field(SERVICENAME_DESCRIPTOR)
        field(SERVICENETWORKARN_DESCRIPTOR)
        field(SERVICENETWORKID_DESCRIPTOR)
        field(SERVICENETWORKNAME_DESCRIPTOR)
        field(STATUS_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()
                CUSTOMDOMAINNAME_DESCRIPTOR.index -> builder.customDomainName = deserializeString()
                DNSENTRY_DESCRIPTOR.index -> builder.dnsEntry = deserializeDnsEntryDocument(deserializer)
                ID_DESCRIPTOR.index -> builder.id = deserializeString()
                SERVICEARN_DESCRIPTOR.index -> builder.serviceArn = deserializeString()
                SERVICEID_DESCRIPTOR.index -> builder.serviceId = deserializeString()
                SERVICENAME_DESCRIPTOR.index -> builder.serviceName = deserializeString()
                SERVICENETWORKARN_DESCRIPTOR.index -> builder.serviceNetworkArn = deserializeString()
                SERVICENETWORKID_DESCRIPTOR.index -> builder.serviceNetworkId = deserializeString()
                SERVICENETWORKNAME_DESCRIPTOR.index -> builder.serviceNetworkName = deserializeString()
                STATUS_DESCRIPTOR.index -> builder.status = deserializeString().let { ServiceNetworkServiceAssociationStatus.fromValue(it) }
                null -> break@loop
                else -> skipValue()
            }
        }
    }
    builder.correctErrors()
    return builder.build()
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy