commonMain.aws.sdk.kotlin.services.appflow.serde.ConnectorProfilePropertiesDocumentDeserializer.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of appflow-jvm Show documentation
Show all versions of appflow-jvm Show documentation
The AWS SDK for Kotlin client for Appflow
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.appflow.serde
import aws.sdk.kotlin.services.appflow.model.ConnectorProfileProperties
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 deserializeConnectorProfilePropertiesDocument(deserializer: Deserializer): ConnectorProfileProperties {
val builder = ConnectorProfileProperties.Builder()
val AMPLITUDE_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Struct, JsonSerialName("Amplitude"))
val CUSTOMCONNECTOR_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Struct, JsonSerialName("CustomConnector"))
val DATADOG_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Struct, JsonSerialName("Datadog"))
val DYNATRACE_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Struct, JsonSerialName("Dynatrace"))
val GOOGLEANALYTICS_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Struct, JsonSerialName("GoogleAnalytics"))
val HONEYCODE_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Struct, JsonSerialName("Honeycode"))
val INFORNEXUS_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Struct, JsonSerialName("InforNexus"))
val MARKETO_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Struct, JsonSerialName("Marketo"))
val PARDOT_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Struct, JsonSerialName("Pardot"))
val REDSHIFT_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Struct, JsonSerialName("Redshift"))
val SAPODATA_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Struct, JsonSerialName("SAPOData"))
val SALESFORCE_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Struct, JsonSerialName("Salesforce"))
val SERVICENOW_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Struct, JsonSerialName("ServiceNow"))
val SINGULAR_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Struct, JsonSerialName("Singular"))
val SLACK_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Struct, JsonSerialName("Slack"))
val SNOWFLAKE_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Struct, JsonSerialName("Snowflake"))
val TRENDMICRO_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Struct, JsonSerialName("Trendmicro"))
val VEEVA_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Struct, JsonSerialName("Veeva"))
val ZENDESK_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Struct, JsonSerialName("Zendesk"))
val OBJ_DESCRIPTOR = SdkObjectDescriptor.build {
field(AMPLITUDE_DESCRIPTOR)
field(CUSTOMCONNECTOR_DESCRIPTOR)
field(DATADOG_DESCRIPTOR)
field(DYNATRACE_DESCRIPTOR)
field(GOOGLEANALYTICS_DESCRIPTOR)
field(HONEYCODE_DESCRIPTOR)
field(INFORNEXUS_DESCRIPTOR)
field(MARKETO_DESCRIPTOR)
field(PARDOT_DESCRIPTOR)
field(REDSHIFT_DESCRIPTOR)
field(SAPODATA_DESCRIPTOR)
field(SALESFORCE_DESCRIPTOR)
field(SERVICENOW_DESCRIPTOR)
field(SINGULAR_DESCRIPTOR)
field(SLACK_DESCRIPTOR)
field(SNOWFLAKE_DESCRIPTOR)
field(TRENDMICRO_DESCRIPTOR)
field(VEEVA_DESCRIPTOR)
field(ZENDESK_DESCRIPTOR)
}
deserializer.deserializeStruct(OBJ_DESCRIPTOR) {
loop@while (true) {
when (findNextFieldIndex()) {
AMPLITUDE_DESCRIPTOR.index -> builder.amplitude = deserializeAmplitudeConnectorProfilePropertiesDocument(deserializer)
CUSTOMCONNECTOR_DESCRIPTOR.index -> builder.customConnector = deserializeCustomConnectorProfilePropertiesDocument(deserializer)
DATADOG_DESCRIPTOR.index -> builder.datadog = deserializeDatadogConnectorProfilePropertiesDocument(deserializer)
DYNATRACE_DESCRIPTOR.index -> builder.dynatrace = deserializeDynatraceConnectorProfilePropertiesDocument(deserializer)
GOOGLEANALYTICS_DESCRIPTOR.index -> builder.googleAnalytics = deserializeGoogleAnalyticsConnectorProfilePropertiesDocument(deserializer)
HONEYCODE_DESCRIPTOR.index -> builder.honeycode = deserializeHoneycodeConnectorProfilePropertiesDocument(deserializer)
INFORNEXUS_DESCRIPTOR.index -> builder.inforNexus = deserializeInforNexusConnectorProfilePropertiesDocument(deserializer)
MARKETO_DESCRIPTOR.index -> builder.marketo = deserializeMarketoConnectorProfilePropertiesDocument(deserializer)
PARDOT_DESCRIPTOR.index -> builder.pardot = deserializePardotConnectorProfilePropertiesDocument(deserializer)
REDSHIFT_DESCRIPTOR.index -> builder.redshift = deserializeRedshiftConnectorProfilePropertiesDocument(deserializer)
SAPODATA_DESCRIPTOR.index -> builder.sapoData = deserializeSapoDataConnectorProfilePropertiesDocument(deserializer)
SALESFORCE_DESCRIPTOR.index -> builder.salesforce = deserializeSalesforceConnectorProfilePropertiesDocument(deserializer)
SERVICENOW_DESCRIPTOR.index -> builder.serviceNow = deserializeServiceNowConnectorProfilePropertiesDocument(deserializer)
SINGULAR_DESCRIPTOR.index -> builder.singular = deserializeSingularConnectorProfilePropertiesDocument(deserializer)
SLACK_DESCRIPTOR.index -> builder.slack = deserializeSlackConnectorProfilePropertiesDocument(deserializer)
SNOWFLAKE_DESCRIPTOR.index -> builder.snowflake = deserializeSnowflakeConnectorProfilePropertiesDocument(deserializer)
TRENDMICRO_DESCRIPTOR.index -> builder.trendmicro = deserializeTrendmicroConnectorProfilePropertiesDocument(deserializer)
VEEVA_DESCRIPTOR.index -> builder.veeva = deserializeVeevaConnectorProfilePropertiesDocument(deserializer)
ZENDESK_DESCRIPTOR.index -> builder.zendesk = deserializeZendeskConnectorProfilePropertiesDocument(deserializer)
null -> break@loop
else -> skipValue()
}
}
}
builder.correctErrors()
return builder.build()
}