aws-sdk-databasemigrationservice 1.111.0 → 1.113.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 +53 -1
- data/lib/aws-sdk-databasemigrationservice/client_api.rb +11 -0
- data/lib/aws-sdk-databasemigrationservice/types.rb +44 -8
- data/lib/aws-sdk-databasemigrationservice.rb +1 -1
- data/sig/client.rbs +12 -0
- data/sig/resource.rbs +2 -0
- data/sig/types.rbs +8 -0
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 854d093115eeaafc8986b22532e6e48e92ce2fdc628775c288e8fb6fac1b1064
|
4
|
+
data.tar.gz: f09d70dd579da0ac8064aed73edd13b0be69acb63b5469c5a8b8dc2da95e4508
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 84687eecaed3a75142bf12d50fd579db1ed98224b279f698eb2a0793401bc47383fddc24c576e1e0de67c71d1ceda6d5c9efecf38e49a91a00456bb21b50514a
|
7
|
+
data.tar.gz: 62a4747a62a80640b7ddc7a014236f6631abfd17eb3bc1cb0fe0b25429e4b24d67844e09cc21bd96ee16ebb9268b8629ec934e444580e3071505129975320771
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.113.0 (2025-02-04)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Introduces TargetDataSettings with the TablePreparationMode option available for data migrations.
|
8
|
+
|
9
|
+
1.112.0 (2025-01-15)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
4
14
|
1.111.0 (2024-12-12)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.113.0
|
@@ -257,11 +257,34 @@ module Aws::DatabaseMigrationService
|
|
257
257
|
# Used when loading credentials from the shared credentials file
|
258
258
|
# at HOME/.aws/credentials. When not specified, 'default' is used.
|
259
259
|
#
|
260
|
+
# @option options [String] :request_checksum_calculation ("when_supported")
|
261
|
+
# Determines when a checksum will be calculated for request payloads. Values are:
|
262
|
+
#
|
263
|
+
# * `when_supported` - (default) When set, a checksum will be
|
264
|
+
# calculated for all request payloads of operations modeled with the
|
265
|
+
# `httpChecksum` trait where `requestChecksumRequired` is `true` and/or a
|
266
|
+
# `requestAlgorithmMember` is modeled.
|
267
|
+
# * `when_required` - When set, a checksum will only be calculated for
|
268
|
+
# request payloads of operations modeled with the `httpChecksum` trait where
|
269
|
+
# `requestChecksumRequired` is `true` or where a `requestAlgorithmMember`
|
270
|
+
# is modeled and supplied.
|
271
|
+
#
|
260
272
|
# @option options [Integer] :request_min_compression_size_bytes (10240)
|
261
273
|
# The minimum size in bytes that triggers compression for request
|
262
274
|
# bodies. The value must be non-negative integer value between 0
|
263
275
|
# and 10485780 bytes inclusive.
|
264
276
|
#
|
277
|
+
# @option options [String] :response_checksum_validation ("when_supported")
|
278
|
+
# Determines when checksum validation will be performed on response payloads. Values are:
|
279
|
+
#
|
280
|
+
# * `when_supported` - (default) When set, checksum validation is performed on all
|
281
|
+
# response payloads of operations modeled with the `httpChecksum` trait where
|
282
|
+
# `responseAlgorithms` is modeled, except when no modeled checksum algorithms
|
283
|
+
# are supported.
|
284
|
+
# * `when_required` - When set, checksum validation is not performed on
|
285
|
+
# response payloads of operations unless the checksum algorithm is supported and
|
286
|
+
# the `requestValidationModeMember` member is set to `ENABLED`.
|
287
|
+
#
|
265
288
|
# @option options [Proc] :retry_backoff
|
266
289
|
# A proc or lambda used for backoff. Defaults to 2**retries * retry_base_delay.
|
267
290
|
# This option is only used in the `legacy` retry mode.
|
@@ -711,6 +734,9 @@ module Aws::DatabaseMigrationService
|
|
711
734
|
# @option params [Array<Types::SourceDataSetting>] :source_data_settings
|
712
735
|
# Specifies information about the source data provider.
|
713
736
|
#
|
737
|
+
# @option params [Array<Types::TargetDataSetting>] :target_data_settings
|
738
|
+
# Specifies information about the target data provider.
|
739
|
+
#
|
714
740
|
# @option params [Integer] :number_of_jobs
|
715
741
|
# The number of parallel jobs that trigger parallel threads to unload
|
716
742
|
# the tables from the source, and then load them to the target.
|
@@ -742,6 +768,11 @@ module Aws::DatabaseMigrationService
|
|
742
768
|
# slot_name: "String",
|
743
769
|
# },
|
744
770
|
# ],
|
771
|
+
# target_data_settings: [
|
772
|
+
# {
|
773
|
+
# table_preparation_mode: "do-nothing", # accepts do-nothing, truncate, drop-tables-on-target
|
774
|
+
# },
|
775
|
+
# ],
|
745
776
|
# number_of_jobs: 1,
|
746
777
|
# tags: [
|
747
778
|
# {
|
@@ -771,6 +802,8 @@ module Aws::DatabaseMigrationService
|
|
771
802
|
# resp.data_migration.source_data_settings[0].cdc_start_time #=> Time
|
772
803
|
# resp.data_migration.source_data_settings[0].cdc_stop_time #=> Time
|
773
804
|
# resp.data_migration.source_data_settings[0].slot_name #=> String
|
805
|
+
# resp.data_migration.target_data_settings #=> Array
|
806
|
+
# resp.data_migration.target_data_settings[0].table_preparation_mode #=> String, one of "do-nothing", "truncate", "drop-tables-on-target"
|
774
807
|
# resp.data_migration.data_migration_statistics.tables_loaded #=> Integer
|
775
808
|
# resp.data_migration.data_migration_statistics.elapsed_time_millis #=> Integer
|
776
809
|
# resp.data_migration.data_migration_statistics.tables_loading #=> Integer
|
@@ -3392,6 +3425,8 @@ module Aws::DatabaseMigrationService
|
|
3392
3425
|
# resp.data_migration.source_data_settings[0].cdc_start_time #=> Time
|
3393
3426
|
# resp.data_migration.source_data_settings[0].cdc_stop_time #=> Time
|
3394
3427
|
# resp.data_migration.source_data_settings[0].slot_name #=> String
|
3428
|
+
# resp.data_migration.target_data_settings #=> Array
|
3429
|
+
# resp.data_migration.target_data_settings[0].table_preparation_mode #=> String, one of "do-nothing", "truncate", "drop-tables-on-target"
|
3395
3430
|
# resp.data_migration.data_migration_statistics.tables_loaded #=> Integer
|
3396
3431
|
# resp.data_migration.data_migration_statistics.elapsed_time_millis #=> Integer
|
3397
3432
|
# resp.data_migration.data_migration_statistics.tables_loading #=> Integer
|
@@ -4942,6 +4977,8 @@ module Aws::DatabaseMigrationService
|
|
4942
4977
|
# resp.data_migrations[0].source_data_settings[0].cdc_start_time #=> Time
|
4943
4978
|
# resp.data_migrations[0].source_data_settings[0].cdc_stop_time #=> Time
|
4944
4979
|
# resp.data_migrations[0].source_data_settings[0].slot_name #=> String
|
4980
|
+
# resp.data_migrations[0].target_data_settings #=> Array
|
4981
|
+
# resp.data_migrations[0].target_data_settings[0].table_preparation_mode #=> String, one of "do-nothing", "truncate", "drop-tables-on-target"
|
4945
4982
|
# resp.data_migrations[0].data_migration_statistics.tables_loaded #=> Integer
|
4946
4983
|
# resp.data_migrations[0].data_migration_statistics.elapsed_time_millis #=> Integer
|
4947
4984
|
# resp.data_migrations[0].data_migration_statistics.tables_loading #=> Integer
|
@@ -8746,6 +8783,10 @@ module Aws::DatabaseMigrationService
|
|
8746
8783
|
# The new information about the source data provider for the data
|
8747
8784
|
# migration.
|
8748
8785
|
#
|
8786
|
+
# @option params [Array<Types::TargetDataSetting>] :target_data_settings
|
8787
|
+
# The new information about the target data provider for the data
|
8788
|
+
# migration.
|
8789
|
+
#
|
8749
8790
|
# @option params [Integer] :number_of_jobs
|
8750
8791
|
# The number of parallel jobs that trigger parallel threads to unload
|
8751
8792
|
# the tables from the source, and then load them to the target.
|
@@ -8774,6 +8815,11 @@ module Aws::DatabaseMigrationService
|
|
8774
8815
|
# slot_name: "String",
|
8775
8816
|
# },
|
8776
8817
|
# ],
|
8818
|
+
# target_data_settings: [
|
8819
|
+
# {
|
8820
|
+
# table_preparation_mode: "do-nothing", # accepts do-nothing, truncate, drop-tables-on-target
|
8821
|
+
# },
|
8822
|
+
# ],
|
8777
8823
|
# number_of_jobs: 1,
|
8778
8824
|
# selection_rules: "SecretString",
|
8779
8825
|
# })
|
@@ -8796,6 +8842,8 @@ module Aws::DatabaseMigrationService
|
|
8796
8842
|
# resp.data_migration.source_data_settings[0].cdc_start_time #=> Time
|
8797
8843
|
# resp.data_migration.source_data_settings[0].cdc_stop_time #=> Time
|
8798
8844
|
# resp.data_migration.source_data_settings[0].slot_name #=> String
|
8845
|
+
# resp.data_migration.target_data_settings #=> Array
|
8846
|
+
# resp.data_migration.target_data_settings[0].table_preparation_mode #=> String, one of "do-nothing", "truncate", "drop-tables-on-target"
|
8799
8847
|
# resp.data_migration.data_migration_statistics.tables_loaded #=> Integer
|
8800
8848
|
# resp.data_migration.data_migration_statistics.elapsed_time_millis #=> Integer
|
8801
8849
|
# resp.data_migration.data_migration_statistics.tables_loading #=> Integer
|
@@ -11339,6 +11387,8 @@ module Aws::DatabaseMigrationService
|
|
11339
11387
|
# resp.data_migration.source_data_settings[0].cdc_start_time #=> Time
|
11340
11388
|
# resp.data_migration.source_data_settings[0].cdc_stop_time #=> Time
|
11341
11389
|
# resp.data_migration.source_data_settings[0].slot_name #=> String
|
11390
|
+
# resp.data_migration.target_data_settings #=> Array
|
11391
|
+
# resp.data_migration.target_data_settings[0].table_preparation_mode #=> String, one of "do-nothing", "truncate", "drop-tables-on-target"
|
11342
11392
|
# resp.data_migration.data_migration_statistics.tables_loaded #=> Integer
|
11343
11393
|
# resp.data_migration.data_migration_statistics.elapsed_time_millis #=> Integer
|
11344
11394
|
# resp.data_migration.data_migration_statistics.tables_loading #=> Integer
|
@@ -12244,6 +12294,8 @@ module Aws::DatabaseMigrationService
|
|
12244
12294
|
# resp.data_migration.source_data_settings[0].cdc_start_time #=> Time
|
12245
12295
|
# resp.data_migration.source_data_settings[0].cdc_stop_time #=> Time
|
12246
12296
|
# resp.data_migration.source_data_settings[0].slot_name #=> String
|
12297
|
+
# resp.data_migration.target_data_settings #=> Array
|
12298
|
+
# resp.data_migration.target_data_settings[0].table_preparation_mode #=> String, one of "do-nothing", "truncate", "drop-tables-on-target"
|
12247
12299
|
# resp.data_migration.data_migration_statistics.tables_loaded #=> Integer
|
12248
12300
|
# resp.data_migration.data_migration_statistics.elapsed_time_millis #=> Integer
|
12249
12301
|
# resp.data_migration.data_migration_statistics.tables_loading #=> Integer
|
@@ -12537,7 +12589,7 @@ module Aws::DatabaseMigrationService
|
|
12537
12589
|
tracer: tracer
|
12538
12590
|
)
|
12539
12591
|
context[:gem_name] = 'aws-sdk-databasemigrationservice'
|
12540
|
-
context[:gem_version] = '1.
|
12592
|
+
context[:gem_version] = '1.113.0'
|
12541
12593
|
Seahorse::Client::Request.new(handlers, context)
|
12542
12594
|
end
|
12543
12595
|
|
@@ -471,11 +471,14 @@ module Aws::DatabaseMigrationService
|
|
471
471
|
SybaseSettings = Shapes::StructureShape.new(name: 'SybaseSettings')
|
472
472
|
TStamp = Shapes::TimestampShape.new(name: 'TStamp')
|
473
473
|
TableListToReload = Shapes::ListShape.new(name: 'TableListToReload')
|
474
|
+
TablePreparationMode = Shapes::StringShape.new(name: 'TablePreparationMode')
|
474
475
|
TableStatistics = Shapes::StructureShape.new(name: 'TableStatistics')
|
475
476
|
TableStatisticsList = Shapes::ListShape.new(name: 'TableStatisticsList')
|
476
477
|
TableToReload = Shapes::StructureShape.new(name: 'TableToReload')
|
477
478
|
Tag = Shapes::StructureShape.new(name: 'Tag')
|
478
479
|
TagList = Shapes::ListShape.new(name: 'TagList')
|
480
|
+
TargetDataSetting = Shapes::StructureShape.new(name: 'TargetDataSetting')
|
481
|
+
TargetDataSettings = Shapes::ListShape.new(name: 'TargetDataSettings')
|
479
482
|
TargetDbType = Shapes::StringShape.new(name: 'TargetDbType')
|
480
483
|
TestConnectionMessage = Shapes::StructureShape.new(name: 'TestConnectionMessage')
|
481
484
|
TestConnectionResponse = Shapes::StructureShape.new(name: 'TestConnectionResponse')
|
@@ -616,6 +619,7 @@ module Aws::DatabaseMigrationService
|
|
616
619
|
CreateDataMigrationMessage.add_member(:service_access_role_arn, Shapes::ShapeRef.new(shape: String, required: true, location_name: "ServiceAccessRoleArn"))
|
617
620
|
CreateDataMigrationMessage.add_member(:enable_cloudwatch_logs, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "EnableCloudwatchLogs"))
|
618
621
|
CreateDataMigrationMessage.add_member(:source_data_settings, Shapes::ShapeRef.new(shape: SourceDataSettings, location_name: "SourceDataSettings"))
|
622
|
+
CreateDataMigrationMessage.add_member(:target_data_settings, Shapes::ShapeRef.new(shape: TargetDataSettings, location_name: "TargetDataSettings"))
|
619
623
|
CreateDataMigrationMessage.add_member(:number_of_jobs, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "NumberOfJobs"))
|
620
624
|
CreateDataMigrationMessage.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
|
621
625
|
CreateDataMigrationMessage.add_member(:selection_rules, Shapes::ShapeRef.new(shape: SecretString, location_name: "SelectionRules"))
|
@@ -800,6 +804,7 @@ module Aws::DatabaseMigrationService
|
|
800
804
|
DataMigration.add_member(:data_migration_type, Shapes::ShapeRef.new(shape: MigrationTypeValue, location_name: "DataMigrationType"))
|
801
805
|
DataMigration.add_member(:data_migration_settings, Shapes::ShapeRef.new(shape: DataMigrationSettings, location_name: "DataMigrationSettings"))
|
802
806
|
DataMigration.add_member(:source_data_settings, Shapes::ShapeRef.new(shape: SourceDataSettings, location_name: "SourceDataSettings"))
|
807
|
+
DataMigration.add_member(:target_data_settings, Shapes::ShapeRef.new(shape: TargetDataSettings, location_name: "TargetDataSettings"))
|
803
808
|
DataMigration.add_member(:data_migration_statistics, Shapes::ShapeRef.new(shape: DataMigrationStatistics, location_name: "DataMigrationStatistics"))
|
804
809
|
DataMigration.add_member(:data_migration_status, Shapes::ShapeRef.new(shape: String, location_name: "DataMigrationStatus"))
|
805
810
|
DataMigration.add_member(:public_ip_addresses, Shapes::ShapeRef.new(shape: PublicIpAddressList, location_name: "PublicIpAddresses"))
|
@@ -1807,6 +1812,7 @@ module Aws::DatabaseMigrationService
|
|
1807
1812
|
ModifyDataMigrationMessage.add_member(:service_access_role_arn, Shapes::ShapeRef.new(shape: String, location_name: "ServiceAccessRoleArn"))
|
1808
1813
|
ModifyDataMigrationMessage.add_member(:data_migration_type, Shapes::ShapeRef.new(shape: MigrationTypeValue, location_name: "DataMigrationType"))
|
1809
1814
|
ModifyDataMigrationMessage.add_member(:source_data_settings, Shapes::ShapeRef.new(shape: SourceDataSettings, location_name: "SourceDataSettings"))
|
1815
|
+
ModifyDataMigrationMessage.add_member(:target_data_settings, Shapes::ShapeRef.new(shape: TargetDataSettings, location_name: "TargetDataSettings"))
|
1810
1816
|
ModifyDataMigrationMessage.add_member(:number_of_jobs, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "NumberOfJobs"))
|
1811
1817
|
ModifyDataMigrationMessage.add_member(:selection_rules, Shapes::ShapeRef.new(shape: SecretString, location_name: "SelectionRules"))
|
1812
1818
|
ModifyDataMigrationMessage.struct_class = Types::ModifyDataMigrationMessage
|
@@ -2801,6 +2807,11 @@ module Aws::DatabaseMigrationService
|
|
2801
2807
|
|
2802
2808
|
TagList.member = Shapes::ShapeRef.new(shape: Tag)
|
2803
2809
|
|
2810
|
+
TargetDataSetting.add_member(:table_preparation_mode, Shapes::ShapeRef.new(shape: TablePreparationMode, location_name: "TablePreparationMode"))
|
2811
|
+
TargetDataSetting.struct_class = Types::TargetDataSetting
|
2812
|
+
|
2813
|
+
TargetDataSettings.member = Shapes::ShapeRef.new(shape: TargetDataSetting)
|
2814
|
+
|
2804
2815
|
TestConnectionMessage.add_member(:replication_instance_arn, Shapes::ShapeRef.new(shape: String, required: true, location_name: "ReplicationInstanceArn"))
|
2805
2816
|
TestConnectionMessage.add_member(:endpoint_arn, Shapes::ShapeRef.new(shape: String, required: true, location_name: "EndpointArn"))
|
2806
2817
|
TestConnectionMessage.struct_class = Types::TestConnectionMessage
|
@@ -623,6 +623,10 @@ module Aws::DatabaseMigrationService
|
|
623
623
|
# Specifies information about the source data provider.
|
624
624
|
# @return [Array<Types::SourceDataSetting>]
|
625
625
|
#
|
626
|
+
# @!attribute [rw] target_data_settings
|
627
|
+
# Specifies information about the target data provider.
|
628
|
+
# @return [Array<Types::TargetDataSetting>]
|
629
|
+
#
|
626
630
|
# @!attribute [rw] number_of_jobs
|
627
631
|
# The number of parallel jobs that trigger parallel threads to unload
|
628
632
|
# the tables from the source, and then load them to the target.
|
@@ -646,6 +650,7 @@ module Aws::DatabaseMigrationService
|
|
646
650
|
:service_access_role_arn,
|
647
651
|
:enable_cloudwatch_logs,
|
648
652
|
:source_data_settings,
|
653
|
+
:target_data_settings,
|
649
654
|
:number_of_jobs,
|
650
655
|
:tags,
|
651
656
|
:selection_rules)
|
@@ -1922,6 +1927,11 @@ module Aws::DatabaseMigrationService
|
|
1922
1927
|
# provider.
|
1923
1928
|
# @return [Array<Types::SourceDataSetting>]
|
1924
1929
|
#
|
1930
|
+
# @!attribute [rw] target_data_settings
|
1931
|
+
# Specifies information about the data migration's target data
|
1932
|
+
# provider.
|
1933
|
+
# @return [Array<Types::TargetDataSetting>]
|
1934
|
+
#
|
1925
1935
|
# @!attribute [rw] data_migration_statistics
|
1926
1936
|
# Provides information about the data migration's run, including
|
1927
1937
|
# start and stop time, latency, and data migration progress.
|
@@ -1961,6 +1971,7 @@ module Aws::DatabaseMigrationService
|
|
1961
1971
|
:data_migration_type,
|
1962
1972
|
:data_migration_settings,
|
1963
1973
|
:source_data_settings,
|
1974
|
+
:target_data_settings,
|
1964
1975
|
:data_migration_statistics,
|
1965
1976
|
:data_migration_status,
|
1966
1977
|
:public_ip_addresses,
|
@@ -6801,22 +6812,23 @@ module Aws::DatabaseMigrationService
|
|
6801
6812
|
include Aws::Structure
|
6802
6813
|
end
|
6803
6814
|
|
6804
|
-
# Specifies
|
6815
|
+
# Specifies the settings required for kerberos authentication when
|
6816
|
+
# creating the replication instance.
|
6805
6817
|
#
|
6806
6818
|
# @!attribute [rw] key_cache_secret_id
|
6807
|
-
# Specifies the
|
6808
|
-
#
|
6819
|
+
# Specifies the ID of the secret that stores the key cache file
|
6820
|
+
# required for kerberos authentication.
|
6809
6821
|
# @return [String]
|
6810
6822
|
#
|
6811
6823
|
# @!attribute [rw] key_cache_secret_iam_arn
|
6812
6824
|
# Specifies the Amazon Resource Name (ARN) of the IAM role that grants
|
6813
6825
|
# Amazon Web Services DMS access to the secret containing key cache
|
6814
|
-
# file for the
|
6826
|
+
# file for the kerberos authentication.
|
6815
6827
|
# @return [String]
|
6816
6828
|
#
|
6817
6829
|
# @!attribute [rw] krb_5_file_contents
|
6818
|
-
# Specifies the
|
6819
|
-
#
|
6830
|
+
# Specifies the contents of krb5 configuration file required for
|
6831
|
+
# kerberos authentication.
|
6820
6832
|
# @return [String]
|
6821
6833
|
#
|
6822
6834
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/KerberosAuthenticationSettings AWS API Documentation
|
@@ -7181,7 +7193,8 @@ module Aws::DatabaseMigrationService
|
|
7181
7193
|
# @return [Boolean]
|
7182
7194
|
#
|
7183
7195
|
# @!attribute [rw] authentication_method
|
7184
|
-
# Specifies
|
7196
|
+
# Specifies the authentication method to be used with Microsoft SQL
|
7197
|
+
# Server.
|
7185
7198
|
# @return [String]
|
7186
7199
|
#
|
7187
7200
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/MicrosoftSQLServerSettings AWS API Documentation
|
@@ -7368,6 +7381,11 @@ module Aws::DatabaseMigrationService
|
|
7368
7381
|
# migration.
|
7369
7382
|
# @return [Array<Types::SourceDataSetting>]
|
7370
7383
|
#
|
7384
|
+
# @!attribute [rw] target_data_settings
|
7385
|
+
# The new information about the target data provider for the data
|
7386
|
+
# migration.
|
7387
|
+
# @return [Array<Types::TargetDataSetting>]
|
7388
|
+
#
|
7371
7389
|
# @!attribute [rw] number_of_jobs
|
7372
7390
|
# The number of parallel jobs that trigger parallel threads to unload
|
7373
7391
|
# the tables from the source, and then load them to the target.
|
@@ -7387,6 +7405,7 @@ module Aws::DatabaseMigrationService
|
|
7387
7405
|
:service_access_role_arn,
|
7388
7406
|
:data_migration_type,
|
7389
7407
|
:source_data_settings,
|
7408
|
+
:target_data_settings,
|
7390
7409
|
:number_of_jobs,
|
7391
7410
|
:selection_rules)
|
7392
7411
|
SENSITIVE = [:selection_rules]
|
@@ -9387,7 +9406,7 @@ module Aws::DatabaseMigrationService
|
|
9387
9406
|
# @return [Integer]
|
9388
9407
|
#
|
9389
9408
|
# @!attribute [rw] authentication_method
|
9390
|
-
# Specifies
|
9409
|
+
# Specifies the authentication method to be used with Oracle.
|
9391
9410
|
# @return [String]
|
9392
9411
|
#
|
9393
9412
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/OracleSettings AWS API Documentation
|
@@ -14018,6 +14037,23 @@ module Aws::DatabaseMigrationService
|
|
14018
14037
|
include Aws::Structure
|
14019
14038
|
end
|
14020
14039
|
|
14040
|
+
# Defines settings for a target data provider for a data migration.
|
14041
|
+
#
|
14042
|
+
# @!attribute [rw] table_preparation_mode
|
14043
|
+
# This setting determines how DMS handles the target tables before
|
14044
|
+
# starting a data migration, either by leaving them untouched,
|
14045
|
+
# dropping and recreating them, or truncating the existing data in the
|
14046
|
+
# target tables.
|
14047
|
+
# @return [String]
|
14048
|
+
#
|
14049
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/TargetDataSetting AWS API Documentation
|
14050
|
+
#
|
14051
|
+
class TargetDataSetting < Struct.new(
|
14052
|
+
:table_preparation_mode)
|
14053
|
+
SENSITIVE = []
|
14054
|
+
include Aws::Structure
|
14055
|
+
end
|
14056
|
+
|
14021
14057
|
# @!attribute [rw] replication_instance_arn
|
14022
14058
|
# The Amazon Resource Name (ARN) of the replication instance.
|
14023
14059
|
# @return [String]
|
data/sig/client.rbs
CHANGED
@@ -39,7 +39,9 @@ module Aws
|
|
39
39
|
?logger: untyped,
|
40
40
|
?max_attempts: Integer,
|
41
41
|
?profile: String,
|
42
|
+
?request_checksum_calculation: String,
|
42
43
|
?request_min_compression_size_bytes: Integer,
|
44
|
+
?response_checksum_validation: String,
|
43
45
|
?retry_backoff: Proc,
|
44
46
|
?retry_base_delay: Float,
|
45
47
|
?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
|
@@ -151,6 +153,11 @@ module Aws
|
|
151
153
|
slot_name: ::String?
|
152
154
|
},
|
153
155
|
],
|
156
|
+
?target_data_settings: Array[
|
157
|
+
{
|
158
|
+
table_preparation_mode: ("do-nothing" | "truncate" | "drop-tables-on-target")?
|
159
|
+
},
|
160
|
+
],
|
154
161
|
?number_of_jobs: ::Integer,
|
155
162
|
?tags: Array[
|
156
163
|
{
|
@@ -1800,6 +1807,11 @@ module Aws
|
|
1800
1807
|
slot_name: ::String?
|
1801
1808
|
},
|
1802
1809
|
],
|
1810
|
+
?target_data_settings: Array[
|
1811
|
+
{
|
1812
|
+
table_preparation_mode: ("do-nothing" | "truncate" | "drop-tables-on-target")?
|
1813
|
+
},
|
1814
|
+
],
|
1803
1815
|
?number_of_jobs: ::Integer,
|
1804
1816
|
?selection_rules: ::String
|
1805
1817
|
) -> _ModifyDataMigrationResponseSuccess
|
data/sig/resource.rbs
CHANGED
@@ -39,7 +39,9 @@ module Aws
|
|
39
39
|
?logger: untyped,
|
40
40
|
?max_attempts: Integer,
|
41
41
|
?profile: String,
|
42
|
+
?request_checksum_calculation: String,
|
42
43
|
?request_min_compression_size_bytes: Integer,
|
44
|
+
?response_checksum_validation: String,
|
43
45
|
?retry_backoff: Proc,
|
44
46
|
?retry_base_delay: Float,
|
45
47
|
?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
|
data/sig/types.rbs
CHANGED
@@ -153,6 +153,7 @@ module Aws::DatabaseMigrationService
|
|
153
153
|
attr_accessor service_access_role_arn: ::String
|
154
154
|
attr_accessor enable_cloudwatch_logs: bool
|
155
155
|
attr_accessor source_data_settings: ::Array[Types::SourceDataSetting]
|
156
|
+
attr_accessor target_data_settings: ::Array[Types::TargetDataSetting]
|
156
157
|
attr_accessor number_of_jobs: ::Integer
|
157
158
|
attr_accessor tags: ::Array[Types::Tag]
|
158
159
|
attr_accessor selection_rules: ::String
|
@@ -381,6 +382,7 @@ module Aws::DatabaseMigrationService
|
|
381
382
|
attr_accessor data_migration_type: ("full-load" | "cdc" | "full-load-and-cdc")
|
382
383
|
attr_accessor data_migration_settings: Types::DataMigrationSettings
|
383
384
|
attr_accessor source_data_settings: ::Array[Types::SourceDataSetting]
|
385
|
+
attr_accessor target_data_settings: ::Array[Types::TargetDataSetting]
|
384
386
|
attr_accessor data_migration_statistics: Types::DataMigrationStatistics
|
385
387
|
attr_accessor data_migration_status: ::String
|
386
388
|
attr_accessor public_ip_addresses: ::Array[::String]
|
@@ -1701,6 +1703,7 @@ module Aws::DatabaseMigrationService
|
|
1701
1703
|
attr_accessor service_access_role_arn: ::String
|
1702
1704
|
attr_accessor data_migration_type: ("full-load" | "cdc" | "full-load-and-cdc")
|
1703
1705
|
attr_accessor source_data_settings: ::Array[Types::SourceDataSetting]
|
1706
|
+
attr_accessor target_data_settings: ::Array[Types::TargetDataSetting]
|
1704
1707
|
attr_accessor number_of_jobs: ::Integer
|
1705
1708
|
attr_accessor selection_rules: ::String
|
1706
1709
|
SENSITIVE: [:selection_rules]
|
@@ -2879,6 +2882,11 @@ module Aws::DatabaseMigrationService
|
|
2879
2882
|
SENSITIVE: []
|
2880
2883
|
end
|
2881
2884
|
|
2885
|
+
class TargetDataSetting
|
2886
|
+
attr_accessor table_preparation_mode: ("do-nothing" | "truncate" | "drop-tables-on-target")
|
2887
|
+
SENSITIVE: []
|
2888
|
+
end
|
2889
|
+
|
2882
2890
|
class TestConnectionMessage
|
2883
2891
|
attr_accessor replication_instance_arn: ::String
|
2884
2892
|
attr_accessor endpoint_arn: ::String
|
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.113.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:
|
11
|
+
date: 2025-02-04 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.216.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.216.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|