aws-sdk-databasemigrationservice 1.86.0 → 1.88.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-databasemigrationservice/client.rb +858 -30
- data/lib/aws-sdk-databasemigrationservice/client_api.rb +40 -0
- data/lib/aws-sdk-databasemigrationservice/types.rb +205 -45
- data/lib/aws-sdk-databasemigrationservice.rb +1 -1
- metadata +4 -4
@@ -203,6 +203,7 @@ module Aws::DatabaseMigrationService
|
|
203
203
|
DescribeTableStatisticsResponse = Shapes::StructureShape.new(name: 'DescribeTableStatisticsResponse')
|
204
204
|
DmsSslModeValue = Shapes::StringShape.new(name: 'DmsSslModeValue')
|
205
205
|
DmsTransferSettings = Shapes::StructureShape.new(name: 'DmsTransferSettings')
|
206
|
+
DocDbDataProviderSettings = Shapes::StructureShape.new(name: 'DocDbDataProviderSettings')
|
206
207
|
DocDbSettings = Shapes::StructureShape.new(name: 'DocDbSettings')
|
207
208
|
DoubleOptional = Shapes::FloatShape.new(name: 'DoubleOptional')
|
208
209
|
DynamoDbSettings = Shapes::StructureShape.new(name: 'DynamoDbSettings')
|
@@ -277,6 +278,7 @@ module Aws::DatabaseMigrationService
|
|
277
278
|
Long = Shapes::IntegerShape.new(name: 'Long')
|
278
279
|
LongOptional = Shapes::IntegerShape.new(name: 'LongOptional')
|
279
280
|
LongVarcharMappingType = Shapes::StringShape.new(name: 'LongVarcharMappingType')
|
281
|
+
MariaDbDataProviderSettings = Shapes::StructureShape.new(name: 'MariaDbDataProviderSettings')
|
280
282
|
MessageFormatValue = Shapes::StringShape.new(name: 'MessageFormatValue')
|
281
283
|
MicrosoftSQLServerSettings = Shapes::StructureShape.new(name: 'MicrosoftSQLServerSettings')
|
282
284
|
MicrosoftSqlServerDataProviderSettings = Shapes::StructureShape.new(name: 'MicrosoftSqlServerDataProviderSettings')
|
@@ -303,6 +305,7 @@ module Aws::DatabaseMigrationService
|
|
303
305
|
ModifyReplicationSubnetGroupResponse = Shapes::StructureShape.new(name: 'ModifyReplicationSubnetGroupResponse')
|
304
306
|
ModifyReplicationTaskMessage = Shapes::StructureShape.new(name: 'ModifyReplicationTaskMessage')
|
305
307
|
ModifyReplicationTaskResponse = Shapes::StructureShape.new(name: 'ModifyReplicationTaskResponse')
|
308
|
+
MongoDbDataProviderSettings = Shapes::StructureShape.new(name: 'MongoDbDataProviderSettings')
|
306
309
|
MongoDbSettings = Shapes::StructureShape.new(name: 'MongoDbSettings')
|
307
310
|
MoveReplicationTaskMessage = Shapes::StructureShape.new(name: 'MoveReplicationTaskMessage')
|
308
311
|
MoveReplicationTaskResponse = Shapes::StructureShape.new(name: 'MoveReplicationTaskResponse')
|
@@ -334,6 +337,7 @@ module Aws::DatabaseMigrationService
|
|
334
337
|
RecommendationSettings = Shapes::StructureShape.new(name: 'RecommendationSettings')
|
335
338
|
RedisAuthTypeValue = Shapes::StringShape.new(name: 'RedisAuthTypeValue')
|
336
339
|
RedisSettings = Shapes::StructureShape.new(name: 'RedisSettings')
|
340
|
+
RedshiftDataProviderSettings = Shapes::StructureShape.new(name: 'RedshiftDataProviderSettings')
|
337
341
|
RedshiftSettings = Shapes::StructureShape.new(name: 'RedshiftSettings')
|
338
342
|
RefreshSchemasMessage = Shapes::StructureShape.new(name: 'RefreshSchemasMessage')
|
339
343
|
RefreshSchemasResponse = Shapes::StructureShape.new(name: 'RefreshSchemasResponse')
|
@@ -767,15 +771,23 @@ module Aws::DatabaseMigrationService
|
|
767
771
|
|
768
772
|
DataProviderList.member = Shapes::ShapeRef.new(shape: DataProvider)
|
769
773
|
|
774
|
+
DataProviderSettings.add_member(:redshift_settings, Shapes::ShapeRef.new(shape: RedshiftDataProviderSettings, location_name: "RedshiftSettings"))
|
770
775
|
DataProviderSettings.add_member(:postgre_sql_settings, Shapes::ShapeRef.new(shape: PostgreSqlDataProviderSettings, location_name: "PostgreSqlSettings"))
|
771
776
|
DataProviderSettings.add_member(:my_sql_settings, Shapes::ShapeRef.new(shape: MySqlDataProviderSettings, location_name: "MySqlSettings"))
|
772
777
|
DataProviderSettings.add_member(:oracle_settings, Shapes::ShapeRef.new(shape: OracleDataProviderSettings, location_name: "OracleSettings"))
|
773
778
|
DataProviderSettings.add_member(:microsoft_sql_server_settings, Shapes::ShapeRef.new(shape: MicrosoftSqlServerDataProviderSettings, location_name: "MicrosoftSqlServerSettings"))
|
779
|
+
DataProviderSettings.add_member(:doc_db_settings, Shapes::ShapeRef.new(shape: DocDbDataProviderSettings, location_name: "DocDbSettings"))
|
780
|
+
DataProviderSettings.add_member(:maria_db_settings, Shapes::ShapeRef.new(shape: MariaDbDataProviderSettings, location_name: "MariaDbSettings"))
|
781
|
+
DataProviderSettings.add_member(:mongo_db_settings, Shapes::ShapeRef.new(shape: MongoDbDataProviderSettings, location_name: "MongoDbSettings"))
|
774
782
|
DataProviderSettings.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
|
783
|
+
DataProviderSettings.add_member_subclass(:redshift_settings, Types::DataProviderSettings::RedshiftSettings)
|
775
784
|
DataProviderSettings.add_member_subclass(:postgre_sql_settings, Types::DataProviderSettings::PostgreSqlSettings)
|
776
785
|
DataProviderSettings.add_member_subclass(:my_sql_settings, Types::DataProviderSettings::MySqlSettings)
|
777
786
|
DataProviderSettings.add_member_subclass(:oracle_settings, Types::DataProviderSettings::OracleSettings)
|
778
787
|
DataProviderSettings.add_member_subclass(:microsoft_sql_server_settings, Types::DataProviderSettings::MicrosoftSqlServerSettings)
|
788
|
+
DataProviderSettings.add_member_subclass(:doc_db_settings, Types::DataProviderSettings::DocDbSettings)
|
789
|
+
DataProviderSettings.add_member_subclass(:maria_db_settings, Types::DataProviderSettings::MariaDbSettings)
|
790
|
+
DataProviderSettings.add_member_subclass(:mongo_db_settings, Types::DataProviderSettings::MongoDbSettings)
|
779
791
|
DataProviderSettings.add_member_subclass(:unknown, Types::DataProviderSettings::Unknown)
|
780
792
|
DataProviderSettings.struct_class = Types::DataProviderSettings
|
781
793
|
|
@@ -1292,6 +1304,13 @@ module Aws::DatabaseMigrationService
|
|
1292
1304
|
DmsTransferSettings.add_member(:bucket_name, Shapes::ShapeRef.new(shape: String, location_name: "BucketName"))
|
1293
1305
|
DmsTransferSettings.struct_class = Types::DmsTransferSettings
|
1294
1306
|
|
1307
|
+
DocDbDataProviderSettings.add_member(:server_name, Shapes::ShapeRef.new(shape: String, location_name: "ServerName"))
|
1308
|
+
DocDbDataProviderSettings.add_member(:port, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "Port"))
|
1309
|
+
DocDbDataProviderSettings.add_member(:database_name, Shapes::ShapeRef.new(shape: String, location_name: "DatabaseName"))
|
1310
|
+
DocDbDataProviderSettings.add_member(:ssl_mode, Shapes::ShapeRef.new(shape: DmsSslModeValue, location_name: "SslMode"))
|
1311
|
+
DocDbDataProviderSettings.add_member(:certificate_arn, Shapes::ShapeRef.new(shape: String, location_name: "CertificateArn"))
|
1312
|
+
DocDbDataProviderSettings.struct_class = Types::DocDbDataProviderSettings
|
1313
|
+
|
1295
1314
|
DocDbSettings.add_member(:username, Shapes::ShapeRef.new(shape: String, location_name: "Username"))
|
1296
1315
|
DocDbSettings.add_member(:password, Shapes::ShapeRef.new(shape: SecretString, location_name: "Password"))
|
1297
1316
|
DocDbSettings.add_member(:server_name, Shapes::ShapeRef.new(shape: String, location_name: "ServerName"))
|
@@ -1615,6 +1634,12 @@ module Aws::DatabaseMigrationService
|
|
1615
1634
|
ListTagsForResourceResponse.add_member(:tag_list, Shapes::ShapeRef.new(shape: TagList, location_name: "TagList"))
|
1616
1635
|
ListTagsForResourceResponse.struct_class = Types::ListTagsForResourceResponse
|
1617
1636
|
|
1637
|
+
MariaDbDataProviderSettings.add_member(:server_name, Shapes::ShapeRef.new(shape: String, location_name: "ServerName"))
|
1638
|
+
MariaDbDataProviderSettings.add_member(:port, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "Port"))
|
1639
|
+
MariaDbDataProviderSettings.add_member(:ssl_mode, Shapes::ShapeRef.new(shape: DmsSslModeValue, location_name: "SslMode"))
|
1640
|
+
MariaDbDataProviderSettings.add_member(:certificate_arn, Shapes::ShapeRef.new(shape: String, location_name: "CertificateArn"))
|
1641
|
+
MariaDbDataProviderSettings.struct_class = Types::MariaDbDataProviderSettings
|
1642
|
+
|
1618
1643
|
MicrosoftSQLServerSettings.add_member(:port, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "Port"))
|
1619
1644
|
MicrosoftSQLServerSettings.add_member(:bcp_packet_size, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "BcpPacketSize"))
|
1620
1645
|
MicrosoftSQLServerSettings.add_member(:database_name, Shapes::ShapeRef.new(shape: String, location_name: "DatabaseName"))
|
@@ -1802,6 +1827,16 @@ module Aws::DatabaseMigrationService
|
|
1802
1827
|
ModifyReplicationTaskResponse.add_member(:replication_task, Shapes::ShapeRef.new(shape: ReplicationTask, location_name: "ReplicationTask"))
|
1803
1828
|
ModifyReplicationTaskResponse.struct_class = Types::ModifyReplicationTaskResponse
|
1804
1829
|
|
1830
|
+
MongoDbDataProviderSettings.add_member(:server_name, Shapes::ShapeRef.new(shape: String, location_name: "ServerName"))
|
1831
|
+
MongoDbDataProviderSettings.add_member(:port, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "Port"))
|
1832
|
+
MongoDbDataProviderSettings.add_member(:database_name, Shapes::ShapeRef.new(shape: String, location_name: "DatabaseName"))
|
1833
|
+
MongoDbDataProviderSettings.add_member(:ssl_mode, Shapes::ShapeRef.new(shape: DmsSslModeValue, location_name: "SslMode"))
|
1834
|
+
MongoDbDataProviderSettings.add_member(:certificate_arn, Shapes::ShapeRef.new(shape: String, location_name: "CertificateArn"))
|
1835
|
+
MongoDbDataProviderSettings.add_member(:auth_type, Shapes::ShapeRef.new(shape: AuthTypeValue, location_name: "AuthType"))
|
1836
|
+
MongoDbDataProviderSettings.add_member(:auth_source, Shapes::ShapeRef.new(shape: String, location_name: "AuthSource"))
|
1837
|
+
MongoDbDataProviderSettings.add_member(:auth_mechanism, Shapes::ShapeRef.new(shape: AuthMechanismValue, location_name: "AuthMechanism"))
|
1838
|
+
MongoDbDataProviderSettings.struct_class = Types::MongoDbDataProviderSettings
|
1839
|
+
|
1805
1840
|
MongoDbSettings.add_member(:username, Shapes::ShapeRef.new(shape: String, location_name: "Username"))
|
1806
1841
|
MongoDbSettings.add_member(:password, Shapes::ShapeRef.new(shape: SecretString, location_name: "Password"))
|
1807
1842
|
MongoDbSettings.add_member(:server_name, Shapes::ShapeRef.new(shape: String, location_name: "ServerName"))
|
@@ -2040,6 +2075,11 @@ module Aws::DatabaseMigrationService
|
|
2040
2075
|
RedisSettings.add_member(:ssl_ca_certificate_arn, Shapes::ShapeRef.new(shape: String, location_name: "SslCaCertificateArn"))
|
2041
2076
|
RedisSettings.struct_class = Types::RedisSettings
|
2042
2077
|
|
2078
|
+
RedshiftDataProviderSettings.add_member(:server_name, Shapes::ShapeRef.new(shape: String, location_name: "ServerName"))
|
2079
|
+
RedshiftDataProviderSettings.add_member(:port, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "Port"))
|
2080
|
+
RedshiftDataProviderSettings.add_member(:database_name, Shapes::ShapeRef.new(shape: String, location_name: "DatabaseName"))
|
2081
|
+
RedshiftDataProviderSettings.struct_class = Types::RedshiftDataProviderSettings
|
2082
|
+
|
2043
2083
|
RedshiftSettings.add_member(:accept_any_date, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "AcceptAnyDate"))
|
2044
2084
|
RedshiftSettings.add_member(:after_connect_script, Shapes::ShapeRef.new(shape: String, location_name: "AfterConnectScript"))
|
2045
2085
|
RedshiftSettings.add_member(:bucket_folder, Shapes::ShapeRef.new(shape: String, location_name: "BucketFolder"))
|
@@ -471,25 +471,25 @@ module Aws::DatabaseMigrationService
|
|
471
471
|
# @!attribute [rw] max_capacity_units
|
472
472
|
# Specifies the maximum value of the DMS capacity units (DCUs) for
|
473
473
|
# which a given DMS Serverless replication can be provisioned. A
|
474
|
-
# single DCU is 2GB of RAM, with
|
475
|
-
# The list of valid DCU values includes 2, 4, 8, 16, 32, 64, 128,
|
476
|
-
# 256, and 384. So, the maximum value that you can specify for
|
477
|
-
# Serverless is 384. The `MaxCapacityUnits` parameter is the only
|
478
|
-
# parameter you are required to specify.
|
474
|
+
# single DCU is 2GB of RAM, with 1 DCU as the minimum value allowed.
|
475
|
+
# The list of valid DCU values includes 1, 2, 4, 8, 16, 32, 64, 128,
|
476
|
+
# 192, 256, and 384. So, the maximum value that you can specify for
|
477
|
+
# DMS Serverless is 384. The `MaxCapacityUnits` parameter is the only
|
478
|
+
# DCU parameter you are required to specify.
|
479
479
|
# @return [Integer]
|
480
480
|
#
|
481
481
|
# @!attribute [rw] min_capacity_units
|
482
482
|
# Specifies the minimum value of the DMS capacity units (DCUs) for
|
483
483
|
# which a given DMS Serverless replication can be provisioned. A
|
484
|
-
# single DCU is 2GB of RAM, with
|
485
|
-
# The list of valid DCU values includes 2, 4, 8, 16, 32, 64, 128,
|
486
|
-
# 256, and 384. So, the minimum DCU value that you can specify
|
487
|
-
# Serverless is
|
484
|
+
# single DCU is 2GB of RAM, with 1 DCU as the minimum value allowed.
|
485
|
+
# The list of valid DCU values includes 1, 2, 4, 8, 16, 32, 64, 128,
|
486
|
+
# 192, 256, and 384. So, the minimum DCU value that you can specify
|
487
|
+
# for DMS Serverless is 1. You don't have to specify a value for the
|
488
488
|
# `MinCapacityUnits` parameter. If you don't set this value, DMS
|
489
489
|
# scans the current activity of available source tables to identify an
|
490
490
|
# optimum setting for this parameter. If there is no current source
|
491
491
|
# activity or DMS can't otherwise identify a more appropriate value,
|
492
|
-
# it sets this parameter to the minimum DCU value allowed,
|
492
|
+
# it sets this parameter to the minimum DCU value allowed, 1.
|
493
493
|
# @return [Integer]
|
494
494
|
#
|
495
495
|
# @!attribute [rw] multi_az
|
@@ -1496,15 +1496,6 @@ module Aws::DatabaseMigrationService
|
|
1496
1496
|
# window. This parameter defaults to `true`.
|
1497
1497
|
#
|
1498
1498
|
# Default: `true`
|
1499
|
-
#
|
1500
|
-
# When `AutoMinorVersionUpgrade` is enabled, DMS uses the current
|
1501
|
-
# default engine version when you create a replication instance. For
|
1502
|
-
# example, if you set `EngineVersion` to a lower version number than
|
1503
|
-
# the current default version, DMS uses the default version.
|
1504
|
-
#
|
1505
|
-
# If `AutoMinorVersionUpgrade` *isn’t* enabled when you create a
|
1506
|
-
# replication instance, DMS uses the engine version specified by the
|
1507
|
-
# `EngineVersion` parameter.
|
1508
1499
|
# @return [Boolean]
|
1509
1500
|
#
|
1510
1501
|
# @!attribute [rw] tags
|
@@ -1735,8 +1726,8 @@ module Aws::DatabaseMigrationService
|
|
1735
1726
|
# Server time example: --cdc-stop-position
|
1736
1727
|
# “server\_time:2018-02-09T12:12:12”
|
1737
1728
|
#
|
1738
|
-
# Commit time example: --cdc-stop-position
|
1739
|
-
# 2018-02-09T12:12:12“
|
1729
|
+
# Commit time example: --cdc-stop-position
|
1730
|
+
# “commit\_time:2018-02-09T12:12:12“
|
1740
1731
|
# @return [String]
|
1741
1732
|
#
|
1742
1733
|
# @!attribute [rw] tags
|
@@ -1909,6 +1900,10 @@ module Aws::DatabaseMigrationService
|
|
1909
1900
|
#
|
1910
1901
|
# @note DataProviderSettings is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of DataProviderSettings corresponding to the set member.
|
1911
1902
|
#
|
1903
|
+
# @!attribute [rw] redshift_settings
|
1904
|
+
# Provides information that defines an Amazon Redshift data provider.
|
1905
|
+
# @return [Types::RedshiftDataProviderSettings]
|
1906
|
+
#
|
1912
1907
|
# @!attribute [rw] postgre_sql_settings
|
1913
1908
|
# Provides information that defines a PostgreSQL data provider.
|
1914
1909
|
# @return [Types::PostgreSqlDataProviderSettings]
|
@@ -1926,22 +1921,42 @@ module Aws::DatabaseMigrationService
|
|
1926
1921
|
# provider.
|
1927
1922
|
# @return [Types::MicrosoftSqlServerDataProviderSettings]
|
1928
1923
|
#
|
1924
|
+
# @!attribute [rw] doc_db_settings
|
1925
|
+
# Provides information that defines a DocumentDB data provider.
|
1926
|
+
# @return [Types::DocDbDataProviderSettings]
|
1927
|
+
#
|
1928
|
+
# @!attribute [rw] maria_db_settings
|
1929
|
+
# Provides information that defines a MariaDB data provider.
|
1930
|
+
# @return [Types::MariaDbDataProviderSettings]
|
1931
|
+
#
|
1932
|
+
# @!attribute [rw] mongo_db_settings
|
1933
|
+
# Provides information that defines a MongoDB data provider.
|
1934
|
+
# @return [Types::MongoDbDataProviderSettings]
|
1935
|
+
#
|
1929
1936
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DataProviderSettings AWS API Documentation
|
1930
1937
|
#
|
1931
1938
|
class DataProviderSettings < Struct.new(
|
1939
|
+
:redshift_settings,
|
1932
1940
|
:postgre_sql_settings,
|
1933
1941
|
:my_sql_settings,
|
1934
1942
|
:oracle_settings,
|
1935
1943
|
:microsoft_sql_server_settings,
|
1944
|
+
:doc_db_settings,
|
1945
|
+
:maria_db_settings,
|
1946
|
+
:mongo_db_settings,
|
1936
1947
|
:unknown)
|
1937
1948
|
SENSITIVE = []
|
1938
1949
|
include Aws::Structure
|
1939
1950
|
include Aws::Structure::Union
|
1940
1951
|
|
1952
|
+
class RedshiftSettings < DataProviderSettings; end
|
1941
1953
|
class PostgreSqlSettings < DataProviderSettings; end
|
1942
1954
|
class MySqlSettings < DataProviderSettings; end
|
1943
1955
|
class OracleSettings < DataProviderSettings; end
|
1944
1956
|
class MicrosoftSqlServerSettings < DataProviderSettings; end
|
1957
|
+
class DocDbSettings < DataProviderSettings; end
|
1958
|
+
class MariaDbSettings < DataProviderSettings; end
|
1959
|
+
class MongoDbSettings < DataProviderSettings; end
|
1945
1960
|
class Unknown < DataProviderSettings; end
|
1946
1961
|
end
|
1947
1962
|
|
@@ -4775,6 +4790,42 @@ module Aws::DatabaseMigrationService
|
|
4775
4790
|
include Aws::Structure
|
4776
4791
|
end
|
4777
4792
|
|
4793
|
+
# Provides information that defines a DocumentDB data provider.
|
4794
|
+
#
|
4795
|
+
# @!attribute [rw] server_name
|
4796
|
+
# The name of the source DocumentDB server.
|
4797
|
+
# @return [String]
|
4798
|
+
#
|
4799
|
+
# @!attribute [rw] port
|
4800
|
+
# The port value for the DocumentDB data provider.
|
4801
|
+
# @return [Integer]
|
4802
|
+
#
|
4803
|
+
# @!attribute [rw] database_name
|
4804
|
+
# The database name on the DocumentDB data provider.
|
4805
|
+
# @return [String]
|
4806
|
+
#
|
4807
|
+
# @!attribute [rw] ssl_mode
|
4808
|
+
# The SSL mode used to connect to the DocumentDB data provider. The
|
4809
|
+
# default value is `none`.
|
4810
|
+
# @return [String]
|
4811
|
+
#
|
4812
|
+
# @!attribute [rw] certificate_arn
|
4813
|
+
# The Amazon Resource Name (ARN) of the certificate used for SSL
|
4814
|
+
# connection.
|
4815
|
+
# @return [String]
|
4816
|
+
#
|
4817
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DocDbDataProviderSettings AWS API Documentation
|
4818
|
+
#
|
4819
|
+
class DocDbDataProviderSettings < Struct.new(
|
4820
|
+
:server_name,
|
4821
|
+
:port,
|
4822
|
+
:database_name,
|
4823
|
+
:ssl_mode,
|
4824
|
+
:certificate_arn)
|
4825
|
+
SENSITIVE = []
|
4826
|
+
include Aws::Structure
|
4827
|
+
end
|
4828
|
+
|
4778
4829
|
# Provides information that defines a DocumentDB endpoint.
|
4779
4830
|
#
|
4780
4831
|
# @!attribute [rw] username
|
@@ -6517,6 +6568,37 @@ module Aws::DatabaseMigrationService
|
|
6517
6568
|
include Aws::Structure
|
6518
6569
|
end
|
6519
6570
|
|
6571
|
+
# Provides information that defines a MariaDB data provider.
|
6572
|
+
#
|
6573
|
+
# @!attribute [rw] server_name
|
6574
|
+
# The name of the MariaDB server.
|
6575
|
+
# @return [String]
|
6576
|
+
#
|
6577
|
+
# @!attribute [rw] port
|
6578
|
+
# The port value for the MariaDB data provider
|
6579
|
+
# @return [Integer]
|
6580
|
+
#
|
6581
|
+
# @!attribute [rw] ssl_mode
|
6582
|
+
# The SSL mode used to connect to the MariaDB data provider. The
|
6583
|
+
# default value is `none`.
|
6584
|
+
# @return [String]
|
6585
|
+
#
|
6586
|
+
# @!attribute [rw] certificate_arn
|
6587
|
+
# The Amazon Resource Name (ARN) of the certificate used for SSL
|
6588
|
+
# connection.
|
6589
|
+
# @return [String]
|
6590
|
+
#
|
6591
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/MariaDbDataProviderSettings AWS API Documentation
|
6592
|
+
#
|
6593
|
+
class MariaDbDataProviderSettings < Struct.new(
|
6594
|
+
:server_name,
|
6595
|
+
:port,
|
6596
|
+
:ssl_mode,
|
6597
|
+
:certificate_arn)
|
6598
|
+
SENSITIVE = []
|
6599
|
+
include Aws::Structure
|
6600
|
+
end
|
6601
|
+
|
6520
6602
|
# Provides information that defines a Microsoft SQL Server endpoint.
|
6521
6603
|
#
|
6522
6604
|
# @!attribute [rw] port
|
@@ -6639,8 +6721,9 @@ module Aws::DatabaseMigrationService
|
|
6639
6721
|
# @return [String]
|
6640
6722
|
#
|
6641
6723
|
# @!attribute [rw] trim_space_in_char
|
6642
|
-
# Use the `TrimSpaceInChar` source endpoint setting to trim data
|
6643
|
-
# CHAR and NCHAR data types during migration.
|
6724
|
+
# Use the `TrimSpaceInChar` source endpoint setting to right-trim data
|
6725
|
+
# on CHAR and NCHAR data types during migration. Setting
|
6726
|
+
# `TrimSpaceInChar` does not left-trim data. The default value is
|
6644
6727
|
# `true`.
|
6645
6728
|
# @return [Boolean]
|
6646
6729
|
#
|
@@ -7583,15 +7666,6 @@ module Aws::DatabaseMigrationService
|
|
7583
7666
|
# * A newer minor version is available.
|
7584
7667
|
#
|
7585
7668
|
# * DMS has enabled automatic patching for the given engine version.
|
7586
|
-
#
|
7587
|
-
# When `AutoMinorVersionUpgrade` is enabled, DMS uses the current
|
7588
|
-
# default engine version when you modify a replication instance. For
|
7589
|
-
# example, if you set `EngineVersion` to a lower version number than
|
7590
|
-
# the current default version, DMS uses the default version.
|
7591
|
-
#
|
7592
|
-
# If `AutoMinorVersionUpgrade` *isn’t* enabled when you modify a
|
7593
|
-
# replication instance, DMS uses the engine version specified by the
|
7594
|
-
# `EngineVersion` parameter.
|
7595
7669
|
# @return [Boolean]
|
7596
7670
|
#
|
7597
7671
|
# @!attribute [rw] replication_instance_identifier
|
@@ -7748,8 +7822,8 @@ module Aws::DatabaseMigrationService
|
|
7748
7822
|
# Server time example: --cdc-stop-position
|
7749
7823
|
# “server\_time:2018-02-09T12:12:12”
|
7750
7824
|
#
|
7751
|
-
# Commit time example: --cdc-stop-position
|
7752
|
-
# 2018-02-09T12:12:12“
|
7825
|
+
# Commit time example: --cdc-stop-position
|
7826
|
+
# “commit\_time:2018-02-09T12:12:12“
|
7753
7827
|
# @return [String]
|
7754
7828
|
#
|
7755
7829
|
# @!attribute [rw] task_data
|
@@ -7791,6 +7865,62 @@ module Aws::DatabaseMigrationService
|
|
7791
7865
|
include Aws::Structure
|
7792
7866
|
end
|
7793
7867
|
|
7868
|
+
# Provides information that defines a MongoDB data provider.
|
7869
|
+
#
|
7870
|
+
# @!attribute [rw] server_name
|
7871
|
+
# The name of the MongoDB server.
|
7872
|
+
# @return [String]
|
7873
|
+
#
|
7874
|
+
# @!attribute [rw] port
|
7875
|
+
# The port value for the MongoDB data provider.
|
7876
|
+
# @return [Integer]
|
7877
|
+
#
|
7878
|
+
# @!attribute [rw] database_name
|
7879
|
+
# The database name on the MongoDB data provider.
|
7880
|
+
# @return [String]
|
7881
|
+
#
|
7882
|
+
# @!attribute [rw] ssl_mode
|
7883
|
+
# The SSL mode used to connect to the MongoDB data provider. The
|
7884
|
+
# default value is `none`.
|
7885
|
+
# @return [String]
|
7886
|
+
#
|
7887
|
+
# @!attribute [rw] certificate_arn
|
7888
|
+
# The Amazon Resource Name (ARN) of the certificate used for SSL
|
7889
|
+
# connection.
|
7890
|
+
# @return [String]
|
7891
|
+
#
|
7892
|
+
# @!attribute [rw] auth_type
|
7893
|
+
# The authentication type for the database connection. Valid values
|
7894
|
+
# are PASSWORD or NO.
|
7895
|
+
# @return [String]
|
7896
|
+
#
|
7897
|
+
# @!attribute [rw] auth_source
|
7898
|
+
# The MongoDB database name. This setting isn't used when `AuthType`
|
7899
|
+
# is set to `"no"`.
|
7900
|
+
#
|
7901
|
+
# The default is `"admin"`.
|
7902
|
+
# @return [String]
|
7903
|
+
#
|
7904
|
+
# @!attribute [rw] auth_mechanism
|
7905
|
+
# The authentication method for connecting to the data provider. Valid
|
7906
|
+
# values are DEFAULT, MONGODB\_CR, or SCRAM\_SHA\_1.
|
7907
|
+
# @return [String]
|
7908
|
+
#
|
7909
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/MongoDbDataProviderSettings AWS API Documentation
|
7910
|
+
#
|
7911
|
+
class MongoDbDataProviderSettings < Struct.new(
|
7912
|
+
:server_name,
|
7913
|
+
:port,
|
7914
|
+
:database_name,
|
7915
|
+
:ssl_mode,
|
7916
|
+
:certificate_arn,
|
7917
|
+
:auth_type,
|
7918
|
+
:auth_source,
|
7919
|
+
:auth_mechanism)
|
7920
|
+
SENSITIVE = []
|
7921
|
+
include Aws::Structure
|
7922
|
+
end
|
7923
|
+
|
7794
7924
|
# Provides information that defines a MongoDB endpoint.
|
7795
7925
|
#
|
7796
7926
|
# @!attribute [rw] username
|
@@ -7803,7 +7933,9 @@ module Aws::DatabaseMigrationService
|
|
7803
7933
|
# @return [String]
|
7804
7934
|
#
|
7805
7935
|
# @!attribute [rw] server_name
|
7806
|
-
# The name of the server on the MongoDB source endpoint.
|
7936
|
+
# The name of the server on the MongoDB source endpoint. For MongoDB
|
7937
|
+
# Atlas, provide the server name for any of the servers in the
|
7938
|
+
# replication set.
|
7807
7939
|
# @return [String]
|
7808
7940
|
#
|
7809
7941
|
# @!attribute [rw] port
|
@@ -8683,8 +8815,8 @@ module Aws::DatabaseMigrationService
|
|
8683
8815
|
# <note markdown="1"> You can specify one of two sets of values for these permissions. You
|
8684
8816
|
# can specify the values for this setting and
|
8685
8817
|
# `SecretsManagerOracleAsmSecretId`. Or you can specify clear-text
|
8686
|
-
# values for `
|
8687
|
-
#
|
8818
|
+
# values for `AsmUser`, `AsmPassword`, and `AsmServerName`. You can't
|
8819
|
+
# specify both. For more information on creating this
|
8688
8820
|
# `SecretsManagerOracleAsmSecret` and the
|
8689
8821
|
# `SecretsManagerOracleAsmAccessRoleArn` and
|
8690
8822
|
# `SecretsManagerOracleAsmSecretId` required to access it, see [Using
|
@@ -9077,7 +9209,9 @@ module Aws::DatabaseMigrationService
|
|
9077
9209
|
#
|
9078
9210
|
# @!attribute [rw] map_boolean_as_boolean
|
9079
9211
|
# When true, lets PostgreSQL migrate the boolean type as boolean. By
|
9080
|
-
# default, PostgreSQL migrates booleans as `varchar(5)`.
|
9212
|
+
# default, PostgreSQL migrates booleans as `varchar(5)`. You must set
|
9213
|
+
# this setting on both the source and target endpoints for it to take
|
9214
|
+
# effect.
|
9081
9215
|
# @return [Boolean]
|
9082
9216
|
#
|
9083
9217
|
# @!attribute [rw] map_jsonb_as_clob
|
@@ -9551,6 +9685,30 @@ module Aws::DatabaseMigrationService
|
|
9551
9685
|
include Aws::Structure
|
9552
9686
|
end
|
9553
9687
|
|
9688
|
+
# Provides information that defines an Amazon Redshift data provider.
|
9689
|
+
#
|
9690
|
+
# @!attribute [rw] server_name
|
9691
|
+
# The name of the Amazon Redshift server.
|
9692
|
+
# @return [String]
|
9693
|
+
#
|
9694
|
+
# @!attribute [rw] port
|
9695
|
+
# The port value for the Amazon Redshift data provider.
|
9696
|
+
# @return [Integer]
|
9697
|
+
#
|
9698
|
+
# @!attribute [rw] database_name
|
9699
|
+
# The database name on the Amazon Redshift data provider.
|
9700
|
+
# @return [String]
|
9701
|
+
#
|
9702
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/RedshiftDataProviderSettings AWS API Documentation
|
9703
|
+
#
|
9704
|
+
class RedshiftDataProviderSettings < Struct.new(
|
9705
|
+
:server_name,
|
9706
|
+
:port,
|
9707
|
+
:database_name)
|
9708
|
+
SENSITIVE = []
|
9709
|
+
include Aws::Structure
|
9710
|
+
end
|
9711
|
+
|
9554
9712
|
# Provides information that defines an Amazon Redshift endpoint.
|
9555
9713
|
#
|
9556
9714
|
# @!attribute [rw] accept_any_date
|
@@ -9799,7 +9957,9 @@ module Aws::DatabaseMigrationService
|
|
9799
9957
|
#
|
9800
9958
|
# @!attribute [rw] map_boolean_as_boolean
|
9801
9959
|
# When true, lets Redshift migrate the boolean type as boolean. By
|
9802
|
-
# default, Redshift migrates booleans as `varchar(1)`.
|
9960
|
+
# default, Redshift migrates booleans as `varchar(1)`. You must set
|
9961
|
+
# this setting on both the source and target endpoints for it to take
|
9962
|
+
# effect.
|
9803
9963
|
# @return [Boolean]
|
9804
9964
|
#
|
9805
9965
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/RedshiftSettings AWS API Documentation
|
@@ -10827,8 +10987,8 @@ module Aws::DatabaseMigrationService
|
|
10827
10987
|
# Server time example: --cdc-stop-position
|
10828
10988
|
# “server\_time:2018-02-09T12:12:12”
|
10829
10989
|
#
|
10830
|
-
# Commit time example: --cdc-stop-position
|
10831
|
-
# 2018-02-09T12:12:12“
|
10990
|
+
# Commit time example: --cdc-stop-position
|
10991
|
+
# “commit\_time:2018-02-09T12:12:12“
|
10832
10992
|
# @return [String]
|
10833
10993
|
#
|
10834
10994
|
# @!attribute [rw] recovery_checkpoint
|
@@ -11817,7 +11977,7 @@ module Aws::DatabaseMigrationService
|
|
11817
11977
|
# An optional parameter that specifies how DMS treats null values.
|
11818
11978
|
# While handling the null value, you can use this parameter to pass a
|
11819
11979
|
# user-defined string as null when writing to the target. For example,
|
11820
|
-
# when target columns are
|
11980
|
+
# when target columns are nullable, you can use this option to
|
11821
11981
|
# differentiate between the empty string value and the null value. So,
|
11822
11982
|
# if you set this parameter value to the empty string ("" or ''),
|
11823
11983
|
# DMS treats the empty string as the null value instead of `NULL`.
|
@@ -12643,8 +12803,8 @@ module Aws::DatabaseMigrationService
|
|
12643
12803
|
# Server time example: --cdc-stop-position
|
12644
12804
|
# “server\_time:2018-02-09T12:12:12”
|
12645
12805
|
#
|
12646
|
-
# Commit time example: --cdc-stop-position
|
12647
|
-
# 2018-02-09T12:12:12“
|
12806
|
+
# Commit time example: --cdc-stop-position
|
12807
|
+
# “commit\_time:2018-02-09T12:12:12“
|
12648
12808
|
# @return [String]
|
12649
12809
|
#
|
12650
12810
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/StartReplicationTaskMessage AWS API Documentation
|
@@ -13209,7 +13369,7 @@ module Aws::DatabaseMigrationService
|
|
13209
13369
|
# When set to true, this operation migrates DMS subscriptions for
|
13210
13370
|
# Amazon SNS notifications no matter what your replication instance
|
13211
13371
|
# version is. If not set or set to false, this operation runs only
|
13212
|
-
# when all your replication instances are from DMS version 3.4.
|
13372
|
+
# when all your replication instances are from DMS version 3.4.5 or
|
13213
13373
|
# higher.
|
13214
13374
|
# @return [Boolean]
|
13215
13375
|
#
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-databasemigrationservice
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.88.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-
|
11
|
+
date: 2023-09-27 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '3'
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 3.
|
22
|
+
version: 3.184.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
version: '3'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.
|
32
|
+
version: 3.184.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|