Skip to content

Commit 9354d4d

Browse files
author
AWS
committed
AWS Database Migration Service Update: This release introduces the SAP ASE(Sybase) Data Provider for AWS Data Migration Service (DMS). In addition, DMS Schema Conversion now supports this provider, enabling customers to migrate SAP ASE(Sybase) databases to Amazon RDS for PostgreSQL or Aurora PostgreSQL seamlessly.
1 parent 60db4be commit 9354d4d

File tree

2 files changed

+82
-4
lines changed

2 files changed

+82
-4
lines changed
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"type": "feature",
3+
"category": "AWS Database Migration Service",
4+
"contributor": "",
5+
"description": "This release introduces the SAP ASE(Sybase) Data Provider for AWS Data Migration Service (DMS). In addition, DMS Schema Conversion now supports this provider, enabling customers to migrate SAP ASE(Sybase) databases to Amazon RDS for PostgreSQL or Aurora PostgreSQL seamlessly."
6+
}

services/databasemigration/src/main/resources/codegen-resources/service-2.json

Lines changed: 76 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2394,7 +2394,7 @@
23942394
},
23952395
"Engine":{
23962396
"shape":"String",
2397-
"documentation":"<p>The type of database engine for the data provider. Valid values include <code>\"aurora\"</code>, <code>\"aurora-postgresql\"</code>, <code>\"mysql\"</code>, <code>\"oracle\"</code>, <code>\"postgres\"</code>, <code>\"sqlserver\"</code>, <code>redshift</code>, <code>mariadb</code>, <code>mongodb</code>, <code>db2</code>, <code>db2-zos</code> and <code>docdb</code>. A value of <code>\"aurora\"</code> represents Amazon Aurora MySQL-Compatible Edition.</p>"
2397+
"documentation":"<p>The type of database engine for the data provider. Valid values include <code>\"aurora\"</code>, <code>\"aurora-postgresql\"</code>, <code>\"mysql\"</code>, <code>\"oracle\"</code>, <code>\"postgres\"</code>, <code>\"sqlserver\"</code>, <code>redshift</code>, <code>mariadb</code>, <code>mongodb</code>, <code>db2</code>, <code>db2-zos</code>, <code>docdb</code>, and <code>sybase</code>. A value of <code>\"aurora\"</code> represents Amazon Aurora MySQL-Compatible Edition.</p>"
23982398
},
23992399
"Virtual":{
24002400
"shape":"BooleanOptional",
@@ -3209,7 +3209,7 @@
32093209
},
32103210
"Engine":{
32113211
"shape":"String",
3212-
"documentation":"<p>The type of database engine for the data provider. Valid values include <code>\"aurora\"</code>, <code>\"aurora-postgresql\"</code>, <code>\"mysql\"</code>, <code>\"oracle\"</code>, <code>\"postgres\"</code>, <code>\"sqlserver\"</code>, <code>redshift</code>, <code>mariadb</code>, <code>mongodb</code>, <code>db2</code>, <code>db2-zos</code> and <code>docdb</code>. A value of <code>\"aurora\"</code> represents Amazon Aurora MySQL-Compatible Edition.</p>"
3212+
"documentation":"<p>The type of database engine for the data provider. Valid values include <code>\"aurora\"</code>, <code>\"aurora-postgresql\"</code>, <code>\"mysql\"</code>, <code>\"oracle\"</code>, <code>\"postgres\"</code>, <code>\"sqlserver\"</code>, <code>redshift</code>, <code>mariadb</code>, <code>mongodb</code>, <code>db2</code>, <code>db2-zos</code>, <code>docdb</code>, and <code>sybase</code>. A value of <code>\"aurora\"</code> represents Amazon Aurora MySQL-Compatible Edition.</p>"
32133213
},
32143214
"Virtual":{
32153215
"shape":"BooleanOptional",
@@ -3282,6 +3282,7 @@
32823282
"PostgreSqlSettings":{"shape":"PostgreSqlDataProviderSettings"},
32833283
"MySqlSettings":{"shape":"MySqlDataProviderSettings"},
32843284
"OracleSettings":{"shape":"OracleDataProviderSettings"},
3285+
"SybaseAseSettings":{"shape":"SybaseAseDataProviderSettings"},
32853286
"MicrosoftSqlServerSettings":{"shape":"MicrosoftSqlServerDataProviderSettings"},
32863287
"DocDbSettings":{"shape":"DocDbDataProviderSettings"},
32873288
"MariaDbSettings":{
@@ -6998,7 +6999,7 @@
69986999
},
69997000
"Engine":{
70007001
"shape":"String",
7001-
"documentation":"<p>The type of database engine for the data provider. Valid values include <code>\"aurora\"</code>, <code>\"aurora-postgresql\"</code>, <code>\"mysql\"</code>, <code>\"oracle\"</code>, <code>\"postgres\"</code>, <code>\"sqlserver\"</code>, <code>redshift</code>, <code>mariadb</code>, <code>mongodb</code>, <code>db2</code>, <code>db2-zos</code> and <code>docdb</code>. A value of <code>\"aurora\"</code> represents Amazon Aurora MySQL-Compatible Edition.</p>"
7002+
"documentation":"<p>The type of database engine for the data provider. Valid values include <code>\"aurora\"</code>, <code>\"aurora-postgresql\"</code>, <code>\"mysql\"</code>, <code>\"oracle\"</code>, <code>\"postgres\"</code>, <code>\"sqlserver\"</code>, <code>redshift</code>, <code>mariadb</code>, <code>mongodb</code>, <code>db2</code>, <code>db2-zos</code>, <code>docdb</code>, and <code>sybase</code>. A value of <code>\"aurora\"</code> represents Amazon Aurora MySQL-Compatible Edition.</p>"
70027003
},
70037004
"Virtual":{
70047005
"shape":"BooleanOptional",
@@ -8358,6 +8359,46 @@
83588359
"type":"list",
83598360
"member":{"shape":"PremigrationAssessmentStatus"}
83608361
},
8362+
"ProcessedObject":{
8363+
"type":"structure",
8364+
"members":{
8365+
"Name":{
8366+
"shape":"String",
8367+
"documentation":"<p>The name of the database object.</p>"
8368+
},
8369+
"Type":{
8370+
"shape":"String",
8371+
"documentation":"<p>The type of the database object. For example, a table, view, procedure, and so on.</p>"
8372+
},
8373+
"EndpointType":{
8374+
"shape":"String",
8375+
"documentation":"<p>The type of the data provider. This parameter can store one of the following values: <code>\"SOURCE\"</code> or <code>\"TARGET\"</code>.</p>"
8376+
}
8377+
},
8378+
"documentation":"<p>The database object that the schema conversion operation currently uses.</p>"
8379+
},
8380+
"Progress":{
8381+
"type":"structure",
8382+
"members":{
8383+
"ProgressPercent":{
8384+
"shape":"DoubleOptional",
8385+
"documentation":"<p>The percent complete for the current step of the schema conversion operation.</p>"
8386+
},
8387+
"TotalObjects":{
8388+
"shape":"Long",
8389+
"documentation":"<p>The number of objects in this schema conversion operation.</p>"
8390+
},
8391+
"ProgressStep":{
8392+
"shape":"String",
8393+
"documentation":"<p>The step of the schema conversion operation. This parameter can store one of the following values:</p> <ul> <li> <p> <code>IN_PROGRESS</code> – The operation is running.</p> </li> <li> <p> <code>LOADING_METADATA</code> – Loads metadata from the source database.</p> </li> <li> <p> <code>COUNTING_OBJECTS</code> – Determines the number of objects involved in the operation.</p> </li> <li> <p> <code>ANALYZING</code> – Analyzes the source database objects.</p> </li> <li> <p> <code>CONVERTING</code> – Converts the source database objects to a format compatible with the target database.</p> </li> <li> <p> <code>APPLYING</code> – Applies the converted code to the target database.</p> </li> <li> <p> <code>FINISHED</code> – The operation completed successfully.</p> </li> </ul>"
8394+
},
8395+
"ProcessedObject":{
8396+
"shape":"ProcessedObject",
8397+
"documentation":"<p>The name of the database object that the schema conversion operation currently uses.</p>"
8398+
}
8399+
},
8400+
"documentation":"<p>Provides information about the progress of the schema conversion operation.</p>"
8401+
},
83618402
"ProvisionData":{
83628403
"type":"structure",
83638404
"members":{
@@ -9994,7 +10035,8 @@
999410035
"documentation":"<p>The migration project ARN.</p>"
999510036
},
999610037
"Error":{"shape":"ErrorDetails"},
9997-
"ExportSqlDetails":{"shape":"ExportSqlDetails"}
10038+
"ExportSqlDetails":{"shape":"ExportSqlDetails"},
10039+
"Progress":{"shape":"Progress"}
999810040
},
999910041
"documentation":"<p>Provides information about a schema conversion action.</p>"
1000010042
},
@@ -10750,6 +10792,36 @@
1075010792
"type":"list",
1075110793
"member":{"shape":"SupportedEndpointType"}
1075210794
},
10795+
"SybaseAseDataProviderSettings":{
10796+
"type":"structure",
10797+
"members":{
10798+
"ServerName":{
10799+
"shape":"String",
10800+
"documentation":"<p>The name of the SAP ASE server.</p>"
10801+
},
10802+
"Port":{
10803+
"shape":"IntegerOptional",
10804+
"documentation":"<p>The port value for the SAP ASE data provider.</p>"
10805+
},
10806+
"DatabaseName":{
10807+
"shape":"String",
10808+
"documentation":"<p>The database name on the SAP ASE data provider.</p>"
10809+
},
10810+
"SslMode":{
10811+
"shape":"DmsSslModeValue",
10812+
"documentation":"<p>The SSL mode used to connect to the SAP ASE data provider. The default value is <code>none</code>.</p>"
10813+
},
10814+
"EncryptPassword":{
10815+
"shape":"BooleanOptional",
10816+
"documentation":"<p>Specifies whether to encrypt the password when connecting to the Sybase ASE database. When set to true, the connection password is encrypted during transmission. Default is true.</p>"
10817+
},
10818+
"CertificateArn":{
10819+
"shape":"String",
10820+
"documentation":"<p>The Amazon Resource Name (ARN) of the certificate used for SSL connection.</p>"
10821+
}
10822+
},
10823+
"documentation":"<p>Provides information that defines an SAP ASE data provider.</p>"
10824+
},
1075310825
"SybaseSettings":{
1075410826
"type":"structure",
1075510827
"members":{

0 commit comments

Comments
 (0)