commonMain.aws.sdk.kotlin.services.databasemigrationservice.serde.MicrosoftSqlServerSettingsDocumentDeserializer.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of databasemigrationservice-jvm Show documentation
Show all versions of databasemigrationservice-jvm Show documentation
The AWS SDK for Kotlin client for Database Migration Service
The newest version!
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.databasemigrationservice.serde
import aws.sdk.kotlin.services.databasemigrationservice.model.MicrosoftSqlServerSettings
import aws.sdk.kotlin.services.databasemigrationservice.model.SafeguardPolicy
import aws.sdk.kotlin.services.databasemigrationservice.model.SqlServerAuthenticationMethod
import aws.sdk.kotlin.services.databasemigrationservice.model.TlogAccessMode
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 deserializeMicrosoftSqlServerSettingsDocument(deserializer: Deserializer): MicrosoftSqlServerSettings {
val builder = MicrosoftSqlServerSettings.Builder()
val AUTHENTICATIONMETHOD_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Enum, JsonSerialName("AuthenticationMethod"))
val BCPPACKETSIZE_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Integer, JsonSerialName("BcpPacketSize"))
val CONTROLTABLESFILEGROUP_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("ControlTablesFileGroup"))
val DATABASENAME_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("DatabaseName"))
val FORCELOBLOOKUP_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Boolean, JsonSerialName("ForceLobLookup"))
val PASSWORD_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("Password"))
val PORT_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Integer, JsonSerialName("Port"))
val QUERYSINGLEALWAYSONNODE_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Boolean, JsonSerialName("QuerySingleAlwaysOnNode"))
val READBACKUPONLY_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Boolean, JsonSerialName("ReadBackupOnly"))
val SAFEGUARDPOLICY_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Enum, JsonSerialName("SafeguardPolicy"))
val SECRETSMANAGERACCESSROLEARN_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("SecretsManagerAccessRoleArn"))
val SECRETSMANAGERSECRETID_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("SecretsManagerSecretId"))
val SERVERNAME_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("ServerName"))
val TLOGACCESSMODE_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Enum, JsonSerialName("TlogAccessMode"))
val TRIMSPACEINCHAR_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Boolean, JsonSerialName("TrimSpaceInChar"))
val USEBCPFULLLOAD_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Boolean, JsonSerialName("UseBcpFullLoad"))
val USETHIRDPARTYBACKUPDEVICE_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Boolean, JsonSerialName("UseThirdPartyBackupDevice"))
val USERNAME_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("Username"))
val OBJ_DESCRIPTOR = SdkObjectDescriptor.build {
field(AUTHENTICATIONMETHOD_DESCRIPTOR)
field(BCPPACKETSIZE_DESCRIPTOR)
field(CONTROLTABLESFILEGROUP_DESCRIPTOR)
field(DATABASENAME_DESCRIPTOR)
field(FORCELOBLOOKUP_DESCRIPTOR)
field(PASSWORD_DESCRIPTOR)
field(PORT_DESCRIPTOR)
field(QUERYSINGLEALWAYSONNODE_DESCRIPTOR)
field(READBACKUPONLY_DESCRIPTOR)
field(SAFEGUARDPOLICY_DESCRIPTOR)
field(SECRETSMANAGERACCESSROLEARN_DESCRIPTOR)
field(SECRETSMANAGERSECRETID_DESCRIPTOR)
field(SERVERNAME_DESCRIPTOR)
field(TLOGACCESSMODE_DESCRIPTOR)
field(TRIMSPACEINCHAR_DESCRIPTOR)
field(USEBCPFULLLOAD_DESCRIPTOR)
field(USETHIRDPARTYBACKUPDEVICE_DESCRIPTOR)
field(USERNAME_DESCRIPTOR)
}
deserializer.deserializeStruct(OBJ_DESCRIPTOR) {
loop@while (true) {
when (findNextFieldIndex()) {
AUTHENTICATIONMETHOD_DESCRIPTOR.index -> builder.authenticationMethod = deserializeString().let { SqlServerAuthenticationMethod.fromValue(it) }
BCPPACKETSIZE_DESCRIPTOR.index -> builder.bcpPacketSize = deserializeInt()
CONTROLTABLESFILEGROUP_DESCRIPTOR.index -> builder.controlTablesFileGroup = deserializeString()
DATABASENAME_DESCRIPTOR.index -> builder.databaseName = deserializeString()
FORCELOBLOOKUP_DESCRIPTOR.index -> builder.forceLobLookup = deserializeBoolean()
PASSWORD_DESCRIPTOR.index -> builder.password = deserializeString()
PORT_DESCRIPTOR.index -> builder.port = deserializeInt()
QUERYSINGLEALWAYSONNODE_DESCRIPTOR.index -> builder.querySingleAlwaysOnNode = deserializeBoolean()
READBACKUPONLY_DESCRIPTOR.index -> builder.readBackupOnly = deserializeBoolean()
SAFEGUARDPOLICY_DESCRIPTOR.index -> builder.safeguardPolicy = deserializeString().let { SafeguardPolicy.fromValue(it) }
SECRETSMANAGERACCESSROLEARN_DESCRIPTOR.index -> builder.secretsManagerAccessRoleArn = deserializeString()
SECRETSMANAGERSECRETID_DESCRIPTOR.index -> builder.secretsManagerSecretId = deserializeString()
SERVERNAME_DESCRIPTOR.index -> builder.serverName = deserializeString()
TLOGACCESSMODE_DESCRIPTOR.index -> builder.tlogAccessMode = deserializeString().let { TlogAccessMode.fromValue(it) }
TRIMSPACEINCHAR_DESCRIPTOR.index -> builder.trimSpaceInChar = deserializeBoolean()
USEBCPFULLLOAD_DESCRIPTOR.index -> builder.useBcpFullLoad = deserializeBoolean()
USETHIRDPARTYBACKUPDEVICE_DESCRIPTOR.index -> builder.useThirdPartyBackupDevice = deserializeBoolean()
USERNAME_DESCRIPTOR.index -> builder.username = deserializeString()
null -> break@loop
else -> skipValue()
}
}
}
builder.correctErrors()
return builder.build()
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy